From 32873110f849f916d47a3d14bf6eee3dd781fad2 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Wed, 18 Nov 2020 16:57:58 -0500 Subject: [PATCH 01/20] delete old scripts and reorg GHES scripts into subdirs --- .../archive-version.js} | 0 .../remove-version-markup.js} | 0 .../create-webhooks-for-new-version.js | 0 .../ghes-to-ghae-versioning.js} | 0 .../release-banner.js | 0 script/new-versioning/enterprise-ae.js | 188 ------------------ script/new-versioning/fixtures.js | 58 ------ script/new-versioning/main | 32 --- script/new-versioning/move-admin-dir.js | 64 ------ script/new-versioning/update-content.js | 36 ---- script/new-versioning/update-frontmatter.js | 72 ------- .../update-not-fpt-conditionals.js | 77 ------- script/new-versioning/update-products-yml.js | 21 -- 13 files changed, 548 deletions(-) rename script/{archive-enterprise-version.js => enterprise-server-deprecations/archive-version.js} (100%) rename script/{remove-deprecated-enterprise-version-markup.js => enterprise-server-deprecations/remove-version-markup.js} (100%) rename script/{ => enterprise-server-releases}/create-webhooks-for-new-version.js (100%) rename script/{new-versioning/github-ae.js => enterprise-server-releases/ghes-to-ghae-versioning.js} (100%) rename script/{ => enterprise-server-releases}/release-banner.js (100%) delete mode 100755 script/new-versioning/enterprise-ae.js delete mode 100755 script/new-versioning/fixtures.js delete mode 100755 script/new-versioning/main delete mode 100755 script/new-versioning/move-admin-dir.js delete mode 100755 script/new-versioning/update-content.js delete mode 100755 script/new-versioning/update-frontmatter.js delete mode 100755 script/new-versioning/update-not-fpt-conditionals.js delete mode 100755 script/new-versioning/update-products-yml.js diff --git a/script/archive-enterprise-version.js b/script/enterprise-server-deprecations/archive-version.js similarity index 100% rename from script/archive-enterprise-version.js rename to script/enterprise-server-deprecations/archive-version.js diff --git a/script/remove-deprecated-enterprise-version-markup.js b/script/enterprise-server-deprecations/remove-version-markup.js similarity index 100% rename from script/remove-deprecated-enterprise-version-markup.js rename to script/enterprise-server-deprecations/remove-version-markup.js diff --git a/script/create-webhooks-for-new-version.js b/script/enterprise-server-releases/create-webhooks-for-new-version.js similarity index 100% rename from script/create-webhooks-for-new-version.js rename to script/enterprise-server-releases/create-webhooks-for-new-version.js diff --git a/script/new-versioning/github-ae.js b/script/enterprise-server-releases/ghes-to-ghae-versioning.js similarity index 100% rename from script/new-versioning/github-ae.js rename to script/enterprise-server-releases/ghes-to-ghae-versioning.js diff --git a/script/release-banner.js b/script/enterprise-server-releases/release-banner.js similarity index 100% rename from script/release-banner.js rename to script/enterprise-server-releases/release-banner.js diff --git a/script/new-versioning/enterprise-ae.js b/script/new-versioning/enterprise-ae.js deleted file mode 100755 index cbe2c2ff28..0000000000 --- a/script/new-versioning/enterprise-ae.js +++ /dev/null @@ -1,188 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const walk = require('walk-sync') -const program = require('commander') -const { uniq, dropRight } = require('lodash') -const frontmatter = require('@github-docs/frontmatter') -const contentPath = path.join(process.cwd(), 'content') -const dataPath = path.join(process.cwd(), 'data') -const translationsPath = path.join(process.cwd(), 'translations') -const { latest } = require('../../lib/enterprise-server-releases') -const { getEnterpriseServerNumber } = require('../../lib/patterns') -const versionSatisfiesRange = require('../../lib/version-satisfies-range') -const getApplicableVersions = require('../../lib/get-applicable-versions') -const getDataReferences = require('../../lib/get-liquid-data-references') - -// [start-readme] -// -// Run this script to add versions frontmatter and Liquid conditionals for -// Enterprise AE, based on anything currently versioned for the latest release -// of Enterprise Server. This script should be run as part of the Enterprise -// Server release process. -// -// [end-readme] - -program - .description('Add versions frontmatter and Liquid conditionals for Enterprise AE based on the latest Enterprise Server release.') - .option('-p, --product ', 'Product ID. Example: admin') - .option('-t, --translations', 'Run the script on content and data in translations, too.') - .parse(process.argv) - -if (program.product) { - console.log(`✅ Running on the ${program.product} product only`) -} else { - console.log('✅ Running on all products') -} - -if (program.translations) { - console.log('✅ Running on both English and translated content and data\n') -} else { - console.log('✅ Running on English content and data\n') -} - -// The new conditional to add -const enterpriseAEConditional = 'currentVersion == "github-ae@latest"' - -// Match: currentVersion "enterprise-server@(\d+\.\d+)" -const getEnterpriseServerConditional = new RegExp(`currentVersion (\\S+?) "${getEnterpriseServerNumber.source}"`) - -console.log(`Adding versioning for Enterprise AE based on ${latest}!\n`) -console.log('Working...\n') - -const englishContentFiles = walkContent(contentPath) -const englishDataFiles = walkData(dataPath, englishContentFiles) - -function walkContent (dirPath) { - if (program.product) { - // Run on content/ only - dirPath = path.join(contentPath, program.product) - } - return walk(dirPath, { includeBasePath: true, directories: false }) - .filter(file => file.includes('/content/')) - .filter(file => file.endsWith('.md')) - .filter(file => !file.endsWith('README.md')) -} - -function walkData (dirPath, contentFiles) { - if (program.product) { - const dataFilesPerProductInContent = getReferencedDataFiles(contentFiles) - const dataFilesPerProductInData = getReferencedDataFiles(dataFilesPerProductInContent) - const dataFilesPerProduct = dataFilesPerProductInContent.concat(dataFilesPerProductInData) - return dataFilesPerProduct - } else { - return walk(dirPath, { includeBasePath: true, directories: false }) - .filter(file => file.includes('/data/reusables') || file.includes('/data/variables')) - .filter(file => !file.endsWith('README.md')) - } -} - -// Return an array of variable and reusable filenames referenced in a given set of files. -function getReferencedDataFiles (files) { - return uniq(files - .map(file => getDataReferences(fs.readFileSync(file, 'utf8'))).flat() - .map(dataRef => { - dataRef = dataRef.replace('site.', '').replace(/\./g, '/') - dataRef = dataRef.includes('variables') ? dropRight(dataRef.split('/')).join('/') : dataRef - dataRef = dataRef.includes('variables') ? `${dataRef}.yml` : `${dataRef}.md` - return path.join(process.cwd(), dataRef) - })) -} - -let allContentFiles, allDataFiles -if (program.translations) { - const translatedContentFiles = walkContent(translationsPath) - const translatedDataFiles = walkData(translationsPath, translatedContentFiles) - allContentFiles = englishContentFiles.concat(translatedContentFiles) - allDataFiles = englishDataFiles.concat(translatedDataFiles) -} else { - allContentFiles = englishContentFiles - allDataFiles = englishDataFiles -} - -// Map Liquid operators to semver operators -const operators = { - ver_gt: '>', - ver_lt: '<', - '==': '=' -} - -allDataFiles - .forEach(file => { - const dataContent = fs.readFileSync(file, 'utf8') - - // Update Liquid in data files - const newDataContent = updateLiquid(dataContent, file) - - fs.writeFileSync(file, newDataContent) - }) - -allContentFiles - .forEach(file => { - const { data, content } = frontmatter(fs.readFileSync(file, 'utf8')) - - const applicableVersions = getApplicableVersions(data.versions, file) - - // If the current page is not available in the latest version of GHES, nothing to do! - if (!applicableVersions.includes(`enterprise-server@${latest}`)) return - - // Add frontmatter version - data.versions['github-ae'] = '*' - - // Update Liquid in content files - const newContent = updateLiquid(content, file) - - // Update Liquid in frontmatter props - Object.keys(data) - .filter(key => typeof data[key] === 'string') - .forEach(key => { - data[key] = updateLiquid(data[key], file) - }) - - fs.writeFileSync(file, frontmatter.stringify(newContent, data, { lineWidth: 10000 })) - }) - -function updateLiquid (content, file) { - const allConditionals = content.match(/{% if .+?%}/g) - if (!allConditionals) return content - - let newContent = content - - allConditionals.forEach(conditional => { - // Do not process a conditional that already includes github-ae - if (conditional.includes('github-ae')) return - - // Example match: currentVersion ver_gt "enterprise-server@2.21" - const enterpriseServerMatch = conditional.match(getEnterpriseServerConditional) - if (!enterpriseServerMatch) return - - // Example liquid operator: ver_gt - const liquidOperator = enterpriseServerMatch[1] - - // Example semver operator: > - const semverOperator = operators[liquidOperator] - - // Example number: 2.21 - const number = enterpriseServerMatch[2] - - // Example range: >2.21 - const range = `${semverOperator}${number}` - - // Return early if the conditional does not apply to the latest GHES version; - // that means it will not apply to GHPI either - if (!versionSatisfiesRange(latest, range)) return - - // First do the replacement within the conditional - // Old: {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.21" %} - // New: {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.21" or currentVersion == "github-ae@latest" %} - const newConditional = conditional.replace(enterpriseServerMatch[0], `${enterpriseServerMatch[0]} or ${enterpriseAEConditional}`) - - // Then replace all instances of the conditional in the content - newContent = newContent.replace(conditional, newConditional) - }) - - return newContent -} - -console.log('Done!') diff --git a/script/new-versioning/fixtures.js b/script/new-versioning/fixtures.js deleted file mode 100755 index c6895088cd..0000000000 --- a/script/new-versioning/fixtures.js +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const walk = require('walk-sync') -const frontmatter = require('@github-docs/frontmatter') -const fixturesPath = path.join(process.cwd(), 'tests/fixtures') - -// NOTE this script does not run as part of script/new-versioning/main! -// It was a one-time-use script that can be removed soon - -const fixturesFiles = walk(fixturesPath, { includeBasePath: true, directories: false }) - .filter(file => file.endsWith('.md')) - .filter(file => !file.includes('tests/fixtures/remove-liquid-statements')) - -fixturesFiles - .forEach(file => { - const { data, content } = frontmatter(fs.readFileSync(file, 'utf8')) - - // Update Liquid in content - const newContent = content ? updateLiquid(content) : '' - - // Update versions frontmatter - if (data) { - if (!data.versions && data.productVersions) { - data.versions = data.productVersions - Object.keys(data.versions).forEach(version => { - // update dotcom, actions, rest, etc. - if (version !== 'enterprise') { - data.versions['free-pro-team'] = data.versions[version] - delete data.versions[version] - } else { - data.versions['enterprise-server'] = data.versions.enterprise - delete data.versions.enterprise - } - }) - } - - delete data.productVersions - - // Update Liquid in frontmatter props - Object.keys(data) - // Only process a subset of props - .filter(key => key === 'title' || key === 'intro' || key === 'product') - .forEach(key => { - data[key] = updateLiquid(data[key]) - }) - } - - fs.writeFileSync(file, frontmatter.stringify(newContent, data, { lineWidth: 10000 })) - }) - -function updateLiquid (content) { - return content - .replace(/page.version/g, 'currentVersion') - .replace(/["'](?:')?dotcom["'](?:')?/g, '"free-pro-team@latest"') - .replace(/["'](?:')?(2\.\d{2})["'](?:')?/g, '"enterprise-server@$1"') -} diff --git a/script/new-versioning/main b/script/new-versioning/main deleted file mode 100755 index 951d3b9eae..0000000000 --- a/script/new-versioning/main +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash - -# [start-readme] -# -# All the new versioning! -# -# Usage -# $ script/new-versioning/main -# -# [end-readme] - -base="script/new-versioning/" - -scripts=( - "move-admin-dir.js" - "update-frontmatter.js" - "update-content.js" - "update-products-yml.js" -) - -for script in "${scripts[@]}" -do - fullPath="${base}${script}" - printf "\n" - echo "⭐ $script" - "${fullPath}" - - echo "${script} is done!" - printf "\n\n" -done - -echo "done with all scripts!" diff --git a/script/new-versioning/move-admin-dir.js b/script/new-versioning/move-admin-dir.js deleted file mode 100755 index f8ff7f101c..0000000000 --- a/script/new-versioning/move-admin-dir.js +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const { execSync } = require('child_process') -const rimraf = require('rimraf').sync -const englishContentDir = 'content' -const walk = require('walk-sync') -const frontmatter = require('@github-docs/frontmatter') -const addRedirect = require('../../lib/redirects/add-redirect-to-frontmatter') - -execSync(`mv ${englishContentDir}/enterprise/admin/ ${englishContentDir}/admin`) -rimraf(`${englishContentDir}/enterprise`) - -fs.readdirSync('translations') - .filter(file => !file.endsWith('.md')) - .forEach(dir => { - const translatedContentDir = path.join('translations', dir, 'content') - execSync(`mv ${translatedContentDir}/enterprise/admin/ ${translatedContentDir}/admin`) - rimraf(`${translatedContentDir}/enterprise`) - }) - -const adminDir = path.join(process.cwd(), englishContentDir, 'admin') - -// Add redirects to English -walk(adminDir, { includeBasePath: true, directories: false }) - .filter(file => file.endsWith('.md')) - .forEach(file => { - const contents = fs.readFileSync(file, 'utf8') - const { data, content } = frontmatter(contents) - - const oldPath = file - .replace(adminDir, '/enterprise/admin') - .replace('.md', '') - .replace('/index', '') - - data.redirect_from = addRedirect(data.redirect_from, oldPath) - - fs.writeFileSync(file, frontmatter.stringify(content, data, { lineWidth: 10000 })) - }) - -// Add redirects to translations -const translationDirs = fs.readdirSync('translations') - .filter(file => !file.endsWith('.md')) - .map(dir => path.join('translations', dir, 'content/admin')) - -translationDirs - .forEach(translationDir => { - walk(translationDir, { includeBasePath: true, directories: false }) - .filter(file => file.endsWith('.md')) - .forEach(file => { - const contents = fs.readFileSync(file, 'utf8') - const { data, content } = frontmatter(contents) - - const oldPath = file - .replace(translationDir, '/enterprise/admin') - .replace('.md', '') - .replace('/index', '') - - data.redirect_from = addRedirect(data.redirect_from, oldPath) - - fs.writeFileSync(file, frontmatter.stringify(content, data, { lineWidth: 10000 })) - }) - }) diff --git a/script/new-versioning/update-content.js b/script/new-versioning/update-content.js deleted file mode 100755 index 3c635f636e..0000000000 --- a/script/new-versioning/update-content.js +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const walk = require('walk-sync') -const { flatten } = require('lodash') -const dirsToProcess = ['content', 'data', 'translations'] -const allFiles = flatten(dirsToProcess.map(dir => { - return walk(path.join(process.cwd(), dir), { includeBasePath: true, directories: false }) - .filter(file => !file.endsWith('README.md')) -})) - -allFiles.forEach(file => { - let newContents = fs.readFileSync(file, 'utf8') - .replace(/page.version/g, 'currentVersion') - .replace(/["'](?:')?dotcom["'](?:')?/g, '"free-pro-team@latest"') - .replace(/["'](?:')?(2\.\d{2})["'](?:')?/g, '"enterprise-server@$1"') - // TODO handle this separately? requires a change in lib/rewrite-local-links.js - // .replace(/class="dotcom-only"/g, 'class="do-not-version"') - - // replace this one weird subtitle - if (file.endsWith('content/github/index.md')) { - newContents = newContents.replace(` -{% if currentVersion != "free-pro-team@latest" %} -

GitHub Enterprise Server {{ currentVersion }}

-{% endif %} -`, '') - } - - // update this one weird link - if (file.endsWith('content/graphql/overview/public-schema.md')) { - newContents = newContents.replace('(GitHub Enterprise {{ currentVersion }})', '({{ allVersions[currentVersion].versionTitle }})') - } - - fs.writeFileSync(file, newContents) -}) diff --git a/script/new-versioning/update-frontmatter.js b/script/new-versioning/update-frontmatter.js deleted file mode 100755 index f76379fd20..0000000000 --- a/script/new-versioning/update-frontmatter.js +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const frontmatter = require('@github-docs/frontmatter') -const { flatten } = require('lodash') -const patterns = require('../../lib/patterns') -const walk = require('walk-sync') -const dirsToProcess = ['content', 'translations'] -const allFiles = flatten(dirsToProcess.map(dir => { - return walk(path.join(process.cwd(), dir), { includeBasePath: true, directories: false }) - .filter(file => !file.endsWith('README.md')) - .filter(file => !(file.endsWith('LICENSE') || file.endsWith('LICENSE-CODE'))) - // we only want to process frontmatter in content files in translations, so skip data files - // this is very brittle but works well enough for this script - // (note data files are updated in script/new-versioning/update-content.js) - .filter(file => !file.includes('/data/')) -})) - -allFiles.forEach(file => { - const contents = fs.readFileSync(file, 'utf8') - const { data, content } = frontmatter(contents) - - if (!data.versions) { - data.versions = data.productVersions - Object.keys(data.versions).forEach(version => { - // process dotcom, actions, rest, etc. - if (version !== 'enterprise') { - data.versions['free-pro-team'] = data.versions[version] - delete data.versions[version] - } else { - data.versions['enterprise-server'] = data.versions.enterprise - // TODO we are not adding these WIP versions yet - // we can run a modified version of this script later to add them - // data.versions['enterprise-cloud'] = '*' - // data.versions['private-instances'] = '*' - delete data.versions.enterprise - } - }) - } - - // remove hardcoded version numbers in redirect frontmatter - // fix for https://github.com/github/docs-internal/issues/10835 - if (data.redirect_from) { - data.redirect_from = Array.from([data.redirect_from]).flat().filter(oldPath => { - return !patterns.getEnterpriseVersionNumber.test(oldPath) - }) - } - - delete data.productVersions - - // update some oneoff content files - if (file.endsWith('content/index.md')) { - data.versions['enterprise-server'] = '*' - // TODO we are not adding these WIP versions yet - // we can run a modified version of this script later to add them - // data.versions['enterprise-cloud'] = '*' - // data.versions['private-instances'] = '*' - } - - if (file.endsWith('content/github/index.md')) { - data.title = 'GitHub.com' - delete data.shortTitle - } - - if (file.endsWith('content/admin/index.md')) { - data.title = 'Enterprise Administrators' - delete data.shortTitle - } - - fs.writeFileSync(file, frontmatter.stringify(content, data, { lineWidth: 10000 })) -}) diff --git a/script/new-versioning/update-not-fpt-conditionals.js b/script/new-versioning/update-not-fpt-conditionals.js deleted file mode 100755 index 5ab96ba3aa..0000000000 --- a/script/new-versioning/update-not-fpt-conditionals.js +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const walk = require('walk-sync') -const frontmatter = require('@github-docs/frontmatter') -const contentPath = path.join(process.cwd(), 'content') -const dataPath = path.join(process.cwd(), 'data') - -// [start-readme] -// -// Run this script to update these Liquid conditionals: -// -// {% if currentVersion != 'free-pro-team@latest' %} -// -// to: -// -// {% if enterpriseServerVersions contains currentVersion %} -// -// [end-readme] - -// The new conditional to add -const newConditional = 'enterpriseServerVersions contains currentVersion' - -// The old conditional to replace -const oldConditional = /currentVersion != ["']free-pro-team@latest["']/g - -console.log('Working...\n') - -const englishContentFiles = walkContent(contentPath) -const englishDataFiles = walkData(dataPath, englishContentFiles) - -function walkContent (dirPath) { - return walk(dirPath, { includeBasePath: true, directories: false }) - .filter(file => file.includes('/content/')) - .filter(file => file.endsWith('.md')) - .filter(file => !file.endsWith('README.md')) -} - -function walkData (dirPath, contentFiles) { - return walk(dirPath, { includeBasePath: true, directories: false }) - .filter(file => file.includes('/data/reusables') || file.includes('/data/variables')) - .filter(file => !file.endsWith('README.md')) -} - -englishDataFiles - .forEach(file => { - const dataContent = fs.readFileSync(file, 'utf8') - - // Update Liquid in data files - const newDataContent = updateLiquid(dataContent, file) - - fs.writeFileSync(file, newDataContent) - }) - -englishContentFiles - .forEach(file => { - const { data, content } = frontmatter(fs.readFileSync(file, 'utf8')) - - // Update Liquid in content files - const newContent = updateLiquid(content, file) - - // Update Liquid in frontmatter props - Object.keys(data) - .filter(key => typeof data[key] === 'string') - .forEach(key => { - data[key] = updateLiquid(data[key], file) - }) - - fs.writeFileSync(file, frontmatter.stringify(newContent, data, { lineWidth: 10000 })) - }) - -function updateLiquid (content) { - return content.replace(oldConditional, newConditional) -} - -console.log('Done!') diff --git a/script/new-versioning/update-products-yml.js b/script/new-versioning/update-products-yml.js deleted file mode 100755 index 9469ad7167..0000000000 --- a/script/new-versioning/update-products-yml.js +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs') -const path = require('path') -const productsFile = path.join(process.cwd(), 'data/products.yml') - -const contents = `# this sequence sets the product order in the sidebar -# the product IDs match keys in lib/all-products.js -# note this file should not be translated -productsInOrder: - - github - - admin - - actions - - packages - - developers - - rest - - graphql - - insights - - desktop` - -fs.writeFileSync(productsFile, contents) From 8e1fc5415c993c6d8dfe4debc4aea67d3a8b3943 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Wed, 18 Nov 2020 17:08:07 -0500 Subject: [PATCH 02/20] ran script/update-readme.js --- script/README.md | 139 +++++++++++++++-------------------------------- 1 file changed, 43 insertions(+), 96 deletions(-) diff --git a/script/README.md b/script/README.md index e11c0b615f..bb718663da 100644 --- a/script/README.md +++ b/script/README.md @@ -39,13 +39,6 @@ Usage: script/anonymize-branch.js [base-branch] Example: sc --- -### [`archive-enterprise-version.js`](archive-enterprise-version.js) - -Run this script during the Enterprise deprecation process to download static copies of all pages for the oldest supported Enterprise version. See the Enterprise deprecation issue template for instructions. - ---- - - ### [`backfill-missing-localizations.js`](backfill-missing-localizations.js) This script copies any English files that are missing from the translations directory into the translations directory. We only need to run this if problems occur with Crowdin's automatic sync. @@ -64,11 +57,9 @@ The `ignore` array is for client-side or build-time stuff that doesn't get `requ --- -### [`check-external-links`](check-external-links) +### [`check-english-links.js`](check-english-links.js) -The script is run once per day via a scheduled GitHub Action to check all links in the site. It automatically opens an issue if it finds broken links. To exclude a URL from the link check, add it to `lib/excluded-links.js`. - -For checking internal links, see `script/check-internal-links`. +This script runs once per day via a scheduled GitHub Action to check all links in English content, not including deprecated Enterprise Server content. It opens an issue if it finds broken links. To exclude a link, add it to `lib/excluded-links.js`. --- @@ -80,18 +71,9 @@ This script is run automatically when you run the server locally. It checks whet --- -### [`check-internal-links`](check-internal-links) - -This script wraps tests/links-and-images.js and provides an option to output results to a file. - -For more information, see `tests/README.md#broken-link-test`. - ---- - - ### [`check-s3-images.js`](check-s3-images.js) -Run this script in your branch to check whether any images referenced in Enterprise content are not in the expected S3 bucket. You will need to authenticate to S3 via `awssume` to use this script. Instructions for the one-time setup are [here](https://github.com/github/product-documentation/blob/master/doc-team-workflows/workflow-information-for-all-writers/setting-up-awssume-and-s3cmd.md). +Run this script in your branch to check whether any images referenced in content are not in an expected S3 bucket. You will need to authenticate to S3 via `awssume` to use this script. Instructions for the one-time setup are [here](https://github.com/github/product-documentation/blob/master/doc-team-workflows/workflow-information-for-all-writers/setting-up-awssume-and-s3cmd.md). --- @@ -114,6 +96,13 @@ Run this script in your branch to check whether any images referenced in Enterpr +--- + + +### [`content-migrations/update-developer-site-links.js`](content-migrations/update-developer-site-links.js) + + + --- @@ -131,9 +120,37 @@ This script finds and lists all the Heroku staging apps and deletes any leftover --- -### [`get-blc-command.js`](get-blc-command.js) +### [`enterprise-server-deprecations/archive-version.js`](enterprise-server-deprecations/archive-version.js) -This script parses options for `script/check-external-links`. +Run this script during the Enterprise deprecation process to download static copies of all pages for the oldest supported Enterprise version. See the Enterprise deprecation issue template for instructions. + +--- + + +### [`enterprise-server-deprecations/remove-version-markup.js`](enterprise-server-deprecations/remove-version-markup.js) + +Run this script after an Enterprise deprecation to remove Liquid statements and frontmatter that contain the deprecated Enterprise version. See the Enterprise deprecation issue template for instructions. + +--- + + +### [`enterprise-server-releases/create-webhooks-for-new-version.js`](enterprise-server-releases/create-webhooks-for-new-version.js) + +This script creates new static webhook payload files for a new version. + +--- + + +### [`enterprise-server-releases/ghes-to-ghae-versioning.js`](enterprise-server-releases/ghes-to-ghae-versioning.js) + +Run this script to add versions frontmatter and Liquid conditionals for GitHub AE, based on anything currently versioned for the provided release of Enterprise Server. This script should be run as part of the Enterprise Server release process. + +--- + + +### [`enterprise-server-releases/release-banner.js`](enterprise-server-releases/release-banner.js) + +This script creates or removes a release candidate banner for a specified version. --- @@ -242,63 +259,6 @@ This script moves reusables out of YAML files into individual Markdown files. --- -### [`new-versioning/fixtures.js`](new-versioning/fixtures.js) - - - ---- - - -### [`new-versioning/main`](new-versioning/main) - -All the new versioning! - -Usage $ script/new-versioning/main - ---- - - -### [`new-versioning/move-admin-dir.js`](new-versioning/move-admin-dir.js) - - - ---- - - -### [`new-versioning/update-content.js`](new-versioning/update-content.js) - - - ---- - - -### [`new-versioning/update-frontmatter.js`](new-versioning/update-frontmatter.js) - - - ---- - - -### [`new-versioning/update-not-fpt-conditionals.js`](new-versioning/update-not-fpt-conditionals.js) - -Run this script to update these Liquid conditionals: - -{% if currentVersion != 'free-pro-team@latest' %} - -to: - -{% if enterpriseServerVersions contains currentVersion %} - ---- - - -### [`new-versioning/update-products-yml.js`](new-versioning/update-products-yml.js) - - - ---- - - ### [`pages-with-liquid-titles.js`](pages-with-liquid-titles.js) This is a temporary script to visualize which pages have liquid (and conditionals) in their `title` frontmatter @@ -368,20 +328,6 @@ An automated test checks for discrepancies between filenames and [autogenerated --- -### [`release-banner.js`](release-banner.js) - -This script creates or removes a release candidate banner for a specified version. - - ---- - -### [`remove-deprecated-enterprise-version-markup.js`](remove-deprecated-enterprise-version-markup.js) - -Run this script after an Enterprise deprecation to remove Liquid statements and frontmatter that contain the deprecated Enterprise version. See the Enterprise deprecation issue template for instructions. - ---- - - ### [`remove-extraneous-translation-files.js`](remove-extraneous-translation-files.js) An [automated test](/tests/extraneous-translation-files.js) checks for files in the `translations/` directory that do not have an equivalent English file in the `content/` directory, and fails if it finds extraneous files. When the test fails, a human needs to run this script to remove the files. @@ -488,9 +434,10 @@ This script is used by other scripts to update temporary AWS credentials and aut --- -### [`upload-enterprise-images-to-s3.js`](upload-enterprise-images-to-s3.js) +### [`upload-images-to-s3.js`](upload-images-to-s3.js) -Run this script to: [upload individual files to S3](https://github.com/github/product-documentation/blob/master/doc-team-workflows/workflow-information-for-all-writers/adding-individual-images-to-earlier-verisons-of-enterprise.md) or: [upload a batch of files to S3 for a new Enterprise release](https://github.com/github/product-documentation/blob/master/doc-team-workflows/working-on-enterprise-releases/information-for-all-writers/storing-a-batch-of-assets-on-s3-for-a-new-release.md). Run `upload-enterprise-images-to-s3.js --help` for usage details. +Use this script to upload individual or batched asset files to a versioned S3 bucket. Run `upload-images-to-s3.js --help` for usage details. --- + From 84fa4ed512f8a093501baeaf80a6b9c56660ec41 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Wed, 18 Nov 2020 19:52:25 -0500 Subject: [PATCH 03/20] rename --- ...create-webhooks-for-new-version.js => create-webhook-files.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename script/enterprise-server-releases/{create-webhooks-for-new-version.js => create-webhook-files.js} (100%) diff --git a/script/enterprise-server-releases/create-webhooks-for-new-version.js b/script/enterprise-server-releases/create-webhook-files.js similarity index 100% rename from script/enterprise-server-releases/create-webhooks-for-new-version.js rename to script/enterprise-server-releases/create-webhook-files.js From ac3d2bab56fcc25a17602695277a45557f761854 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Wed, 18 Nov 2020 19:52:34 -0500 Subject: [PATCH 04/20] update relative paths --- .../archive-version.js | 6 +++--- .../remove-version-markup.js | 12 ++++++------ .../create-webhook-files.js | 2 +- script/enterprise-server-releases/release-banner.js | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/script/enterprise-server-deprecations/archive-version.js b/script/enterprise-server-deprecations/archive-version.js index 88a4541181..633cc3fd4d 100755 --- a/script/enterprise-server-deprecations/archive-version.js +++ b/script/enterprise-server-deprecations/archive-version.js @@ -10,10 +10,10 @@ const scrape = require('website-scraper') const program = require('commander') const rimraf = require('rimraf').sync const mkdirp = require('mkdirp').sync -const version = require('../lib/enterprise-server-releases').oldestSupported +const version = require('../../lib/enterprise-server-releases').oldestSupported const archivalRepoName = 'help-docs-archived-enterprise-versions' const archivalRepoUrl = `https://github.com/github/${archivalRepoName}` -const loadRedirects = require('../lib/redirects/precompile') +const loadRedirects = require('../../lib/redirects/precompile') // [start-readme] // @@ -95,7 +95,7 @@ async function main () { } console.log(`Enterprise version to archive: ${version}`) - const pages = await (require('../lib/pages')()) + const pages = await (require('../../lib/pages')()) const permalinksPerVersion = Object.keys(pages) .filter(key => key.includes(`/enterprise-server@${version}`)) diff --git a/script/enterprise-server-deprecations/remove-version-markup.js b/script/enterprise-server-deprecations/remove-version-markup.js index 8a746c6d80..5fb5390881 100755 --- a/script/enterprise-server-deprecations/remove-version-markup.js +++ b/script/enterprise-server-deprecations/remove-version-markup.js @@ -6,11 +6,11 @@ const walk = require('walk-sync') const matter = require('gray-matter') const program = require('commander') const { indexOf, nth } = require('lodash') -const removeLiquidStatements = require('../lib/remove-liquid-statements') -const removeDeprecatedFrontmatter = require('../lib/remove-deprecated-frontmatter') -const enterpriseServerReleases = require('../lib/enterprise-server-releases') -const contentPath = path.join(__dirname, '../content') -const dataPath = path.join(__dirname, '../data') +const removeLiquidStatements = require('../../lib/remove-liquid-statements') +const removeDeprecatedFrontmatter = require('../../lib/remove-deprecated-frontmatter') +const enterpriseServerReleases = require('../../lib/enterprise-server-releases') +const contentPath = path.join(__dirname, '../../content') +const dataPath = path.join(__dirname, '../../data') const removeUnusedAssetsScript = 'script/remove-unused-assets' const elseifRegex = /{-?% elsif/ @@ -62,7 +62,7 @@ const allFiles = contentFiles.concat(dataFiles) main() console.log(`\nRunning ${removeUnusedAssetsScript}...`) -require(`../${removeUnusedAssetsScript}`) +require(path.join(process.cwd(), removeUnusedAssetsScript)) function printElseIfFoundWarning (location) { console.log(`${location} has an 'elsif' condition! Resolve all elsifs by hand, then rerun the script.`) diff --git a/script/enterprise-server-releases/create-webhook-files.js b/script/enterprise-server-releases/create-webhook-files.js index bcf0fa8b11..c7a3373b49 100755 --- a/script/enterprise-server-releases/create-webhook-files.js +++ b/script/enterprise-server-releases/create-webhook-files.js @@ -4,7 +4,7 @@ const fs = require('fs') const mkdirp = require('mkdirp').sync const path = require('path') const program = require('commander') -const allVersions = require('../lib/all-versions') +const allVersions = require('../../lib/all-versions') // [start-readme] // diff --git a/script/enterprise-server-releases/release-banner.js b/script/enterprise-server-releases/release-banner.js index b5a1bd414a..881e2488ac 100755 --- a/script/enterprise-server-releases/release-banner.js +++ b/script/enterprise-server-releases/release-banner.js @@ -4,7 +4,7 @@ const fs = require('fs') const path = require('path') const program = require('commander') const yaml = require('js-yaml') -const allVersions = require('../lib/all-versions') +const allVersions = require('../../lib/all-versions') const releaseCandidateFile = 'data/variables/release_candidate.yml' const releaseCandidateYaml = path.join(process.cwd(), releaseCandidateFile) From dfda2763178936b5c3af4ddedba962d51fd0ff9b Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Wed, 18 Nov 2020 22:07:14 -0500 Subject: [PATCH 05/20] update formatting --- script/check-english-links.js | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/script/check-english-links.js b/script/check-english-links.js index 1fc5743c57..77bab4fb82 100755 --- a/script/check-english-links.js +++ b/script/check-english-links.js @@ -76,18 +76,14 @@ async function main () { const skippedLinks = result.links.filter(x => x.state === 'SKIPPED') const brokenLinks = result.links.filter(x => x.state === 'BROKEN') - console.log(dedent` - ${brokenLinks.length} broken links found on docs.github.com - - Link scan completed in ${endTime - startTime}ms - Total links: ${result.links.length} - Skipped links: ${skippedLinks.length} - Broken links: ${brokenLinks.length} - For more details see ${path.relative(process.cwd(), logFile)} - `) + console.log(`${brokenLinks.length} broken links found on docs.github.com\n`) if (brokenLinks.length) { - console.log('\n\n' + JSON.stringify(brokenLinks, null, 2)) + console.log('```') + brokenLinks.forEach(brokenLinkObj => { + console.log(JSON.stringify(brokenLinkObj, null, 2)) + }) + console.log('```') process.exit(1) } From f6076876a0f2d943fd84967ddbd3f113c2100395 Mon Sep 17 00:00:00 2001 From: Chiedo John <2156688+chiedo@users.noreply.github.com> Date: Thu, 19 Nov 2020 08:55:08 -0500 Subject: [PATCH 06/20] Update README to use consistent formatting (#16475) Co-authored-by: Octomerger Bot <63058869+Octomerger@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4ace2c7507..2a4e7b3e1a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ This repository contains the documentation website code and Markdown source file GitHub's Docs team works on pre-production content in a private repo that regularly syncs with this public repo. In this article: + - [Contributing](#contributing) - [READMEs](#readmes) - [License](#license) From 121ce58f2a21881142d50fe89c5c5be8766153fc Mon Sep 17 00:00:00 2001 From: Octomerger Bot <63058869+Octomerger@users.noreply.github.com> Date: Thu, 19 Nov 2020 09:04:18 -0500 Subject: [PATCH 07/20] Fix formatting --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a4e7b3e1a..1b126769c8 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ If you have a solution to one of the open issues, you will need to fork the repo We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in [discussions](https://github.com/github/docs/discussions). #### And that's it! + That's how you can get started easily as a member of the GitHub Documentation community. :sparkles: If you want to know more, or you're making a more complex contribution, check out [Getting Started with Contributing](/CONTRIBUTING.md). From 247e52b8d96b82ba4b77a703efa292d1ab860ea8 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Thu, 19 Nov 2020 09:28:48 -0500 Subject: [PATCH 08/20] Fix the link (#16531) Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com> --- includes/helpfulness.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/helpfulness.html b/includes/helpfulness.html index 5164323fac..b4d8a04d5b 100644 --- a/includes/helpfulness.html +++ b/includes/helpfulness.html @@ -9,7 +9,7 @@ {% data ui.helpfulness.able_to_find %}

- Privacy policy + Privacy policy

Date: Thu, 19 Nov 2020 07:02:53 -0800 Subject: [PATCH 09/20] Fix chrome not sending exit events (#16488) Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com> --- javascripts/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascripts/events.js b/javascripts/events.js index c995f21e00..73f15ffeff 100644 --- a/javascripts/events.js +++ b/javascripts/events.js @@ -125,7 +125,7 @@ function getPerformance () { ) const nav = performance?.getEntriesByType('navigation')?.[0] return { - firstContentfulPaint: paint ? paint / 1000 : undefined, + firstContentfulPaint: paint ? paint.startTime / 1000 : undefined, domInteractive: nav ? nav.domInteractive / 1000 : undefined, domComplete: nav ? nav.domComplete / 1000 : undefined, render: nav ? (nav.responseEnd - nav.requestStart) / 1000 : undefined From baec6e4b8b8190bf283e2c8259fc4c2b8acd55f9 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Thu, 19 Nov 2020 10:13:31 -0500 Subject: [PATCH 10/20] match code style in table to code style in body (#16516) Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com> --- stylesheets/tables.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stylesheets/tables.scss b/stylesheets/tables.scss index eb5cba8cc6..c10a98dfea 100644 --- a/stylesheets/tables.scss +++ b/stylesheets/tables.scss @@ -10,9 +10,10 @@ table-layout: auto; code { - font-size: 100%; - background: none; - padding: 0; + font-size: 85%; + padding: 0.2em 0.4em; + background-color: rgba($black, 0.05); + border-radius: $border-radius; } thead tr { From cfeaf1db5b5c1f39c25135a02a37b798516781e0 Mon Sep 17 00:00:00 2001 From: mc <42146119+mchammer01@users.noreply.github.com> Date: Thu, 19 Nov 2020 15:29:23 +0000 Subject: [PATCH 11/20] Updates to alert access section in Security & Analysis page (#16513) * made a start * improve updates * fix a few things * update screenshots * reword * iterating on the updated content * reinstate empty line * use variables with caps * fix broken anchor * Apply suggestions from code review Co-authored-by: hubwriter Co-authored-by: hubwriter --- ...ity-and-analysis-disable-or-enable-all.png | Bin 69726 -> 50416 bytes ...sis-enable-or-disable-feature-checkbox.png | Bin 69680 -> 77727 bytes ...-security-alerts-person-or-team-search.png | Bin 71785 -> 47608 bytes ...-analysis-security-alerts-save-changes.png | Bin 40095 -> 21720 bytes ...nd-analysis-security-alerts-username-x.png | Bin 83698 -> 40327 bytes .../about-secret-scanning.md | 6 ++++++ ...d-analysis-settings-for-your-repository.md | 18 +++++++++--------- ...bout-alerts-for-vulnerable-dependencies.md | 2 +- ...ing-the-audit-log-for-your-organization.md | 2 +- 9 files changed, 17 insertions(+), 11 deletions(-) diff --git a/assets/images/help/organizations/security-and-analysis-disable-or-enable-all.png b/assets/images/help/organizations/security-and-analysis-disable-or-enable-all.png index a09eb6581fb8b423abd41a76c8bec639a1f4ea12..80f95c37a47321be2566c215516060a91ec3d521 100644 GIT binary patch literal 50416 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 F{4e58`|SV# diff --git a/assets/images/help/organizations/security-and-analysis-enable-or-disable-feature-checkbox.png b/assets/images/help/organizations/security-and-analysis-enable-or-disable-feature-checkbox.png index f0fea298c5a68e0840a847572a2334106c3281e4..6b01311f0e703896e077f2797de54c2ef48544c3 100644 GIT binary patch literal 77727 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 diff --git a/assets/images/help/repository/security-and-analysis-security-alerts-person-or-team-search.png b/assets/images/help/repository/security-and-analysis-security-alerts-person-or-team-search.png index 8a376966ec2f7d8f6bd616440f4f5ab1c161f1d7..d61cf4c9c10297cd3ff89f94c7a6fe02583d393f 100644 GIT binary patch literal 47608 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 DTD4%y diff --git a/assets/images/help/repository/security-and-analysis-security-alerts-save-changes.png b/assets/images/help/repository/security-and-analysis-security-alerts-save-changes.png index 6d41a941eb32ac3e2ebfe31c04301f8b14ff36fc..1805e3ff12e8df1996468a7c7e1c066d452db154 100644 GIT binary patch literal 21720 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 literal 40095 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 LI=4%1SqJ?OTw4x- diff --git a/assets/images/help/repository/security-and-analysis-security-alerts-username-x.png b/assets/images/help/repository/security-and-analysis-security-alerts-username-x.png index a66f674c55c0173347536de38ca41ca1bf1ccbca..85298bdee4d7d8b5f7f03e135c43a79c07ffa472 100644 GIT binary patch literal 40327 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 kmUCaN=C;3!TiFK>z>% literal 83698 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 IvajF&KZZg%BLDyZ diff --git a/content/github/administering-a-repository/about-secret-scanning.md b/content/github/administering-a-repository/about-secret-scanning.md index 125f7333aa..5a1e1c486b 100644 --- a/content/github/administering-a-repository/about-secret-scanning.md +++ b/content/github/administering-a-repository/about-secret-scanning.md @@ -18,6 +18,8 @@ Service providers can partner with {% data variables.product.company_short %} to ### About {% data variables.product.prodname_secret_scanning %} for public repositories + {% data variables.product.prodname_secret_scanning_caps %} is automatically enabled on public repositories, where it scans code for secrets, to check for known secret formats. When a match of your secret format is found in a public repository, {% data variables.product.company_short %} doesn't publicly disclose the information as an alert, but instead sends a payload to an HTTP endpoint of your choice. For an overview of how secret scanning works on public repositories, see "[Secret scanning](/developers/overview/secret-scanning)." + When you push to a public repository, {% data variables.product.product_name %} scans the content of the commits for secrets. If you switch a private repository to public, {% data variables.product.product_name %} scans the entire repository for secrets. When {% data variables.product.prodname_secret_scanning %} detects a set of credentials, we notify the service provider who issued the secret. The service provider validates the credential and then decides whether they should revoke the secret, issue a new secret, or reach out to you directly, which will depend on the associated risks to you or the service provider. @@ -65,6 +67,8 @@ When {% data variables.product.prodname_secret_scanning %} detects a set of cred {% data reusables.secret-scanning.beta %} +If you're a repository administrator or an organization owner, you can enable {% data variables.product.prodname_secret_scanning %} for private repositories that are owned by organizations. You can enable {% data variables.product.prodname_secret_scanning %} for all your repositories, or for all new repositories within your organization. {% data variables.product.prodname_secret_scanning_caps %} is not available for user account-owned private repositories. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository)" and "[Managing security and analysis settings for your organization](/github/setting-up-and-managing-organizations-and-teams/managing-security-and-analysis-settings-for-your-organization)." + When you push commits to a private repository with {% data variables.product.prodname_secret_scanning %} enabled, {% data variables.product.product_name %} scans the contents of the commits for secrets. When {% data variables.product.prodname_secret_scanning %} detects a secret in a private repository, {% data variables.product.prodname_dotcom %} sends alerts. @@ -73,6 +77,8 @@ When {% data variables.product.prodname_secret_scanning %} detects a secret in a - {% data variables.product.prodname_dotcom %} displays an alert in the repository. For more information, see "[Managing alerts from {% data variables.product.prodname_secret_scanning %}](/github/administering-a-repository/managing-alerts-from-secret-scanning)." +Repository administrators and organization owners can grant users and team access to {% data variables.product.prodname_secret_scanning %} alerts. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts)." + {% data variables.product.product_name %} currently scans private repositories for secrets issued by the following service providers. - Adafruit diff --git a/content/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository.md b/content/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository.md index 8ad1e17cf4..c43877ac01 100644 --- a/content/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository.md +++ b/content/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository.md @@ -23,31 +23,31 @@ versions: 4. Under "Configure security and analysis features", to the right of the feature, click **Disable** or **Enable**. !["Enable" or "Disable" button for "Configure security and analysis" features](/assets/images/help/repository/security-and-analysis-disable-or-enable.png) -### Granting access to {% data variables.product.prodname_dependabot_alerts %} +### Granting access to security alerts -After you enable {% data variables.product.prodname_dependabot_alerts %} for a repository in an organization, organization owners and repository administrators can view the alerts by default. You can give additional teams and people access to the alerts for a repository. +After you enable {% data variables.product.prodname_dependabot %} or {% data variables.product.prodname_secret_scanning %} alerts for a repository in an organization, organization owners and repository administrators can view the alerts by default. You can give additional teams and people access to the alerts for a repository. {% note %} -Organization owners and repository administrators can only grant access to view {% data variables.product.prodname_dependabot_alerts %} to people or teams who have write access to the repo. +Organization owners and repository administrators can only grant access to view security alerts, such as {% data variables.product.prodname_dependabot %} and {% data variables.product.prodname_secret_scanning %} alerts, to people or teams who have write access to the repo. {% endnote %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-security-and-analysis %} -4. Under "Dependabot alerts", in the search field, start typing the name of the person or team you'd like to find, then click a name in the list of matches. - ![Search field for granting people or teams access to Dependabot alerts](/assets/images/help/repository/security-and-analysis-security-alerts-person-or-team-search.png) +4. Under "Access to alerts", in the search field, start typing the name of the person or team you'd like to find, then click a name in the list of matches. + ![Search field for granting people or teams access to security alerts](/assets/images/help/repository/security-and-analysis-security-alerts-person-or-team-search.png) 5. Click **Save changes**. - !["Save changes" button for changes to Dependabot alert settings](/assets/images/help/repository/security-and-analysis-security-alerts-save-changes.png) + !["Save changes" button for changes to security alert settings](/assets/images/help/repository/security-and-analysis-security-alerts-save-changes.png) -### Removing access to {% data variables.product.prodname_dependabot_alerts %} +### Removing access to security alerts {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-security-and-analysis %} -4. Under "Dependabot alerts", to the right of the person or team whose access you'd like to remove, click {% octicon "x" aria-label="X symbol" %}. - !["x" button to remove someone's access to Dependabot alerts for your repository](/assets/images/help/repository/security-and-analysis-security-alerts-username-x.png) +4. Under "Access to alerts", to the right of the person or team whose access you'd like to remove, click {% octicon "x" aria-label="X symbol" %}. + !["x" button to remove someone's access to security alerts for your repository](/assets/images/help/repository/security-and-analysis-security-alerts-username-x.png) ### Further reading diff --git a/content/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies.md b/content/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies.md index c0f46c3657..a628b146fd 100644 --- a/content/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies.md +++ b/content/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies.md @@ -71,7 +71,7 @@ When {% data variables.product.product_name %} identifies a vulnerable dependenc You can see all of the alerts that affect a particular project{% if currentVersion == "free-pro-team@latest" %} on the repository's Security tab or{% endif %} in the repository's dependency graph.{% if currentVersion == "free-pro-team@latest" %} For more information, see "[Viewing and updating vulnerable dependencies in your repository](/articles/viewing-and-updating-vulnerable-dependencies-in-your-repository)."{% endif %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.21" %} -By default, we notify people with admin permissions in the affected repositories about new {% data variables.product.prodname_dependabot_alerts %}.{% endif %} {% if currentVersion == "free-pro-team@latest" %}{% data variables.product.product_name %} never publicly discloses identified vulnerabilities for any repository. You can also make {% data variables.product.prodname_dependabot_alerts %} visible to additional people or teams working repositories that you own or have admin permissions for. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-dependabot-alerts)." +By default, we notify people with admin permissions in the affected repositories about new {% data variables.product.prodname_dependabot_alerts %}.{% endif %} {% if currentVersion == "free-pro-team@latest" %}{% data variables.product.product_name %} never publicly discloses identified vulnerabilities for any repository. You can also make {% data variables.product.prodname_dependabot_alerts %} visible to additional people or teams working repositories that you own or have admin permissions for. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts)." {% endif %} {% if enterpriseServerVersions contains currentVersion and currentVersion ver_lt "enterprise-server@2.22" %} diff --git a/content/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization.md b/content/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization.md index 12d0287162..178a583f56 100644 --- a/content/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization.md +++ b/content/github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization.md @@ -474,7 +474,7 @@ For more information, see "[Restricting publication of {% data variables.product | Action | Description |------------------|------------------- -| `authorized_users_teams` | Triggered when an organization owner or a person with admin permissions to the repository updates the list of people or teams authorized to receive {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies in the repository. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-dependabot-alerts)." +| `authorized_users_teams` | Triggered when an organization owner or a person with admin permissions to the repository updates the list of people or teams authorized to receive {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies in the repository. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts)." | `disable` | Triggered when a repository owner or person with admin access to the repository disables {% data variables.product.prodname_dependabot_alerts %}. | `enable` | Triggered when a repository owner or person with admin access to the repository enables {% data variables.product.prodname_dependabot_alerts %}. From 018b1316bf1ddcefb79ec8b7aeb4eda500c85e48 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Thu, 19 Nov 2020 11:34:41 -0500 Subject: [PATCH 12/20] format excluded links for use in regex --- lib/excluded-links.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/excluded-links.js b/lib/excluded-links.js index 22f8540240..8339a4a01f 100644 --- a/lib/excluded-links.js +++ b/lib/excluded-links.js @@ -1,8 +1,8 @@ // Linkinator treats the following as regex. module.exports = [ // Skip GitHub search links. - 'https://github.com/search?.*', - 'https://github.com/github/gitignore/search?', + 'https://github.com/search\\?', + 'https://github.com/github/gitignore/search\\?', // These links require auth. 'https://github.com/settings/profile', @@ -15,6 +15,6 @@ module.exports = [ // Oneoff links that link checkers think are broken but are not. 'https://haveibeenpwned.com/', - 'https://www.ilo.org/dyn/normlex/en/f?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029', + 'https://www.ilo.org/dyn/normlex/en/f\\?p=NORMLEXPUB:12100:0::NO::P12100_ILO_CODE:P029', 'http://www.w3.org/wiki/LinkHeader/' ] From 1b5153cda1dca65fdd3544f19318044b48501935 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Thu, 19 Nov 2020 11:35:16 -0500 Subject: [PATCH 13/20] add retrying step and add better formatting --- script/check-english-links.js | 85 ++++++++++++++++++++++++++--------- 1 file changed, 63 insertions(+), 22 deletions(-) diff --git a/script/check-english-links.js b/script/check-english-links.js index 77bab4fb82..6ba05b94d6 100755 --- a/script/check-english-links.js +++ b/script/check-english-links.js @@ -3,14 +3,21 @@ const path = require('path') const fs = require('fs') const linkinator = require('linkinator') -const dedent = require('dedent') const program = require('commander') -const { escapeRegExp } = require('lodash') +const { pull } = require('lodash') const checker = new linkinator.LinkChecker() const rimraf = require('rimraf').sync +const mkdirp = require('mkdirp').sync const root = 'https://docs.github.com' const englishRoot = `${root}/en` const { deprecated } = require('../lib/enterprise-server-releases') +const got = require('got') + +// Links with these codes may or may not really be broken +const retryStatusCodes = [429, 503, 'Undefined'] + +// Broken S3 image URLs result in 403s, broken docs URLs results in 404s +const allBrokenStatusCodes = [403, 404, ...retryStatusCodes] // [start-readme] // @@ -23,11 +30,11 @@ const { deprecated } = require('../lib/enterprise-server-releases') program .description('Check all links in the English docs.') .option('-d, --dry-run', 'Turn off recursion to get a fast minimal report (useful for previewing output).') + .option('-p, --path ', 'Provide an optional path to check. Best used with --dry-run. If not provided, defaults to the homepage.') .parse(process.argv) // Skip excluded links defined in separate file. const excludedLinks = require('../lib/excluded-links') - .map(link => escapeRegExp(link)) // Skip non-English content. const languagesToSkip = Object.keys(require('../lib/languages')) @@ -40,7 +47,7 @@ const languagesToSkip = Object.keys(require('../lib/languages')) const enterpriseReleasesToSkip = new RegExp(`${root}.+?[/@](${deprecated.join('|')})/`) const config = { - path: englishRoot, + path: program.path || englishRoot, concurrency: 300, // If this is a dry run, turn off recursion. recurse: !program.dryRun, @@ -56,12 +63,10 @@ const config = { main() async function main () { - const startTime = new Date() - // Clear and recreate a directory for logs. const logFile = path.join(__dirname, '../.linkinator/full.log') rimraf(path.dirname(logFile)) - fs.mkdirSync(path.dirname(logFile), { recursive: true }) + mkdirp(path.dirname(logFile)) // Update CLI output and append to logfile after each checked link. checker.on('link', result => { @@ -69,23 +74,59 @@ async function main () { }) // Start the scan; events will be logged as they occur. - const result = await checker.check(config) + const result = (await checker.check(config)).links - // Scan is complete! Display the results. - const endTime = new Date() - const skippedLinks = result.links.filter(x => x.state === 'SKIPPED') - const brokenLinks = result.links.filter(x => x.state === 'BROKEN') - - console.log(`${brokenLinks.length} broken links found on docs.github.com\n`) - - if (brokenLinks.length) { - console.log('```') - brokenLinks.forEach(brokenLinkObj => { - console.log(JSON.stringify(brokenLinkObj, null, 2)) + // Scan is complete! Filter the results for broken links. + const brokenLinks = result + .filter(link => link.state === 'BROKEN') + // Coerce undefined status codes into strings so we can filter for them like the other status codes. + .map(link => { + if (!link.status) link.status = 'Undefined' + return link }) - console.log('```') - process.exit(1) + + // Links to retry individually. + const linksToRetry = brokenLinks + .filter(link => retryStatusCodes.find(retryStatusCode => link.status === retryStatusCode)) + + await Promise.all(linksToRetry + .map(async (link) => { + try { + const r = await got(link.url) + // Remove the link from the list if got can access it. + if (!allBrokenStatusCodes.find(brokenStatusCode => r.statusCode === brokenStatusCode)) { + pull(brokenLinks, link) + } + // Do nothing if the URL is invalid, since it's already captured in the broken list. + } catch (err) { + // noop + } + })) + + // Exit successfully if no broken links! + if (!brokenLinks.length) { + console.log('All links are good!') + process.exit(0) } - process.exit(0) + // Format and display the results. + console.log(`${brokenLinks.length} broken links found on docs.github.com\n`) + allBrokenStatusCodes + .forEach(statusCode => displayBrokenLinks(statusCode, brokenLinks)) + + // Exit unsuccessfully if broken links are found. + process.exit(1) +} + +function displayBrokenLinks (statusCode, brokenLinks) { + const brokenLinksForStatus = brokenLinks.filter(x => x.status === statusCode) + + if (!brokenLinksForStatus.length) return + + console.log(`## Status code ${statusCode}: Found ${brokenLinksForStatus.length} broken links`) + console.log('```') + brokenLinksForStatus.forEach(brokenLinkObj => { + console.log(JSON.stringify(brokenLinkObj, null, 2)) + }) + console.log('```') } From 53d1c1d65cb57904435c56f53a6479afeba0e4a6 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Thu, 19 Nov 2020 12:03:17 -0500 Subject: [PATCH 14/20] a bit more cleanup --- script/check-english-links.js | 46 +++++++++++++++++------------------ 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/script/check-english-links.js b/script/check-english-links.js index 6ba05b94d6..8b119a3549 100755 --- a/script/check-english-links.js +++ b/script/check-english-links.js @@ -4,7 +4,7 @@ const path = require('path') const fs = require('fs') const linkinator = require('linkinator') const program = require('commander') -const { pull } = require('lodash') +const { pull, uniq } = require('lodash') const checker = new linkinator.LinkChecker() const rimraf = require('rimraf').sync const mkdirp = require('mkdirp').sync @@ -16,14 +16,11 @@ const got = require('got') // Links with these codes may or may not really be broken const retryStatusCodes = [429, 503, 'Undefined'] -// Broken S3 image URLs result in 403s, broken docs URLs results in 404s -const allBrokenStatusCodes = [403, 404, ...retryStatusCodes] - // [start-readme] // // This script runs once per day via a scheduled GitHub Action to check all links in // English content, not including deprecated Enterprise Server content. It opens an issue -// if it finds broken links. To exclude a link, add it to `lib/excluded-links.js`. +// if it finds broken links. To exclude a link path, add it to `lib/excluded-links.js`. // // [end-readme] @@ -65,8 +62,8 @@ main() async function main () { // Clear and recreate a directory for logs. const logFile = path.join(__dirname, '../.linkinator/full.log') - rimraf(path.dirname(logFile)) - mkdirp(path.dirname(logFile)) + rimraf(logFile) + mkdirp(logFile) // Update CLI output and append to logfile after each checked link. checker.on('link', result => { @@ -79,7 +76,7 @@ async function main () { // Scan is complete! Filter the results for broken links. const brokenLinks = result .filter(link => link.state === 'BROKEN') - // Coerce undefined status codes into strings so we can filter for them like the other status codes. + // Coerce undefined status codes into strings so we can filter and display them (otherwise they stringify as 0) .map(link => { if (!link.status) link.status = 'Undefined' return link @@ -92,12 +89,11 @@ async function main () { await Promise.all(linksToRetry .map(async (link) => { try { - const r = await got(link.url) - // Remove the link from the list if got can access it. - if (!allBrokenStatusCodes.find(brokenStatusCode => r.statusCode === brokenStatusCode)) { - pull(brokenLinks, link) - } - // Do nothing if the URL is invalid, since it's already captured in the broken list. + // got throws an HTTPError if response code is not 2xx or 3xx. + // If got succeeds, we can remove the link from the list. + await got(link.url) + pull(brokenLinks, link) + // If got fails, do nothing. The link is already in the broken list. } catch (err) { // noop } @@ -111,22 +107,24 @@ async function main () { // Format and display the results. console.log(`${brokenLinks.length} broken links found on docs.github.com\n`) - allBrokenStatusCodes - .forEach(statusCode => displayBrokenLinks(statusCode, brokenLinks)) + displayBrokenLinks(brokenLinks) // Exit unsuccessfully if broken links are found. process.exit(1) } -function displayBrokenLinks (statusCode, brokenLinks) { - const brokenLinksForStatus = brokenLinks.filter(x => x.status === statusCode) +function displayBrokenLinks (brokenLinks) { + // Sort results by status code. + const allStatusCodes = uniq(brokenLinks.map(x => x.status)) - if (!brokenLinksForStatus.length) return + allStatusCodes.forEach(statusCode => { + const brokenLinksForStatus = brokenLinks.filter(x => x.status === statusCode) - console.log(`## Status code ${statusCode}: Found ${brokenLinksForStatus.length} broken links`) - console.log('```') - brokenLinksForStatus.forEach(brokenLinkObj => { - console.log(JSON.stringify(brokenLinkObj, null, 2)) + console.log(`## Status code ${statusCode}: Found ${brokenLinksForStatus.length} broken links`) + console.log('```') + brokenLinksForStatus.forEach(brokenLinkObj => { + console.log(JSON.stringify(brokenLinkObj, null, 2)) + }) + console.log('```') }) - console.log('```') } From 9332c62195d0c357bece990de8def25447bf1aac Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Thu, 19 Nov 2020 13:06:20 -0500 Subject: [PATCH 15/20] Sm0ller webpack output (#16543) * Install friendly-errors-webpack-plugin * Use it --- middleware/webpack.js | 12 +++++-- package-lock.json | 74 +++++++++++++++++++++++++++++++++++++++++++ package.json | 1 + 3 files changed, 85 insertions(+), 2 deletions(-) diff --git a/middleware/webpack.js b/middleware/webpack.js index 9fd021f758..50c56c30e4 100644 --- a/middleware/webpack.js +++ b/middleware/webpack.js @@ -1,12 +1,20 @@ const webpack = require('webpack') const middleware = require('webpack-dev-middleware') const config = require('../webpack.config') +const FriendlyErrorsWebpackPlugin = require('friendly-errors-webpack-plugin') const webpackCompiler = webpack({ ...config, - mode: 'development' + mode: 'development', + plugins: [ + ...config.plugins, + new FriendlyErrorsWebpackPlugin({ + clearConsole: false + }) + ] }) module.exports = middleware(webpackCompiler, { - publicPath: config.output.publicPath + publicPath: config.output.publicPath, + logLevel: 'silent' }) diff --git a/package-lock.json b/package-lock.json index 55b713a58e..a20693f694 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6718,6 +6718,15 @@ "is-arrayish": "^0.2.1" } }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "dev": true, + "requires": { + "stackframe": "^1.1.1" + } + }, "es-abstract": { "version": "1.17.7", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", @@ -8492,6 +8501,65 @@ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" }, + "friendly-errors-webpack-plugin": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.7.0.tgz", + "integrity": "sha512-K27M3VK30wVoOarP651zDmb93R9zF28usW4ocaK3mfQeIEI5BPht/EzZs5E8QLLwbLRJQMwscAjDxYPb1FuNiw==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "error-stack-parser": "^2.0.0", + "string-width": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + } + } + }, "from": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", @@ -18695,6 +18763,12 @@ "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", "dev": true }, + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==", + "dev": true + }, "start-server-and-test": { "version": "1.11.3", "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-1.11.3.tgz", diff --git a/package.json b/package.json index bdbaab89c1..1e2089be0b 100644 --- a/package.json +++ b/package.json @@ -98,6 +98,7 @@ "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "event-to-promise": "^0.8.0", + "friendly-errors-webpack-plugin": "^1.7.0", "graphql": "^14.5.8", "heroku-client": "^3.1.0", "husky": "^4.2.1", From 0a2fb5c6ac5d9cf6c6dc0cf302229e9ff88cabf0 Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Thu, 19 Nov 2020 13:34:20 -0500 Subject: [PATCH 16/20] Update script/check-english-links.js Co-authored-by: Jason Etcovitch --- script/check-english-links.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/check-english-links.js b/script/check-english-links.js index 8b119a3549..12018954da 100755 --- a/script/check-english-links.js +++ b/script/check-english-links.js @@ -84,7 +84,7 @@ async function main () { // Links to retry individually. const linksToRetry = brokenLinks - .filter(link => retryStatusCodes.find(retryStatusCode => link.status === retryStatusCode)) + .filter(link => retryStatusCodes.includes(link.status)) await Promise.all(linksToRetry .map(async (link) => { From 4de2712df8b6d0fc26dd6cd92dcb81c499c9a7f0 Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Thu, 19 Nov 2020 10:52:01 -0800 Subject: [PATCH 17/20] run prettier on yaml files (#16510) --- script/graphql/update-files.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/graphql/update-files.js b/script/graphql/update-files.js index ed51b443b5..ee721e7250 100755 --- a/script/graphql/update-files.js +++ b/script/graphql/update-files.js @@ -78,6 +78,9 @@ async function main () { updateStaticFile(previewsJson, path.join(graphqlStaticDir, 'previews.json')) updateStaticFile(upcomingChangesJson, path.join(graphqlStaticDir, 'upcoming-changes.json')) updateStaticFile(prerenderedObjects, path.join(graphqlStaticDir, 'prerendered-objects.json')) + + // Ensure the YAML linter runs before checkinging in files + execSync('npx prettier -w "**/*.{yml,yaml}"') } // get latest from github/github From 2187e9892995136e861e25937a5bcf657e49c8aa Mon Sep 17 00:00:00 2001 From: Sarah Schneider Date: Thu, 19 Nov 2020 14:16:34 -0500 Subject: [PATCH 18/20] move some things around --- script/check-english-links.js | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/script/check-english-links.js b/script/check-english-links.js index 12018954da..e8be9c22ee 100755 --- a/script/check-english-links.js +++ b/script/check-english-links.js @@ -13,8 +13,8 @@ const englishRoot = `${root}/en` const { deprecated } = require('../lib/enterprise-server-releases') const got = require('got') -// Links with these codes may or may not really be broken -const retryStatusCodes = [429, 503, 'Undefined'] +// Links with these codes may or may not really be broken. +const retryStatusCodes = [429, 503] // [start-readme] // @@ -62,8 +62,8 @@ main() async function main () { // Clear and recreate a directory for logs. const logFile = path.join(__dirname, '../.linkinator/full.log') - rimraf(logFile) - mkdirp(logFile) + rimraf(path.dirname(logFile)) + mkdirp(path.dirname(logFile)) // Update CLI output and append to logfile after each checked link. checker.on('link', result => { @@ -76,15 +76,10 @@ async function main () { // Scan is complete! Filter the results for broken links. const brokenLinks = result .filter(link => link.state === 'BROKEN') - // Coerce undefined status codes into strings so we can filter and display them (otherwise they stringify as 0) - .map(link => { - if (!link.status) link.status = 'Undefined' - return link - }) // Links to retry individually. const linksToRetry = brokenLinks - .filter(link => retryStatusCodes.includes(link.status)) + .filter(link => !link.status || retryStatusCodes.includes(link.status)) await Promise.all(linksToRetry .map(async (link) => { @@ -115,12 +110,20 @@ async function main () { function displayBrokenLinks (brokenLinks) { // Sort results by status code. - const allStatusCodes = uniq(brokenLinks.map(x => x.status)) + const allStatusCodes = uniq(brokenLinks + // Coerce undefined status codes into `Invalid` strings so we can display them. + // Without this, undefined codes get JSON.stringified as `0`, which is not useful output. + .map(link => { + if (!link.status) link.status = 'Invalid' + return link + }) + .map(link => link.status) + ) allStatusCodes.forEach(statusCode => { const brokenLinksForStatus = brokenLinks.filter(x => x.status === statusCode) - console.log(`## Status code ${statusCode}: Found ${brokenLinksForStatus.length} broken links`) + console.log(`## Status ${statusCode}: Found ${brokenLinksForStatus.length} broken links`) console.log('```') brokenLinksForStatus.forEach(brokenLinkObj => { console.log(JSON.stringify(brokenLinkObj, null, 2)) From 4219c176ad0a8bf9fbef872779c326d3758dafc3 Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Thu, 19 Nov 2020 11:55:36 -0800 Subject: [PATCH 19/20] run graphQL updater script (#16546) --- data/graphql/schema.docs.graphql | 80 +++++++++++++++ lib/graphql/static/prerendered-objects.json | 7 +- lib/graphql/static/schema-dotcom.json | 103 ++++++++++++++++++++ 3 files changed, 189 insertions(+), 1 deletion(-) diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index 5a45a09a79..02468bf69b 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -18708,6 +18708,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr hasSponsorsListing: Boolean! id: ID! + """ + The interaction ability settings for this organization. + """ + interactionAbility: RepositoryInteractionAbility + """ The setting value for whether the organization has an IP allow list enabled. """ @@ -28857,6 +28862,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo & homepageUrl: URI id: ID! + """ + The interaction ability settings for this repository. + """ + interactionAbility: RepositoryInteractionAbility + """ Indicates if the repository is unmaintained. """ @@ -30082,6 +30092,71 @@ interface RepositoryInfo { usesCustomOpenGraphImage: Boolean! } +""" +Repository interaction limit that applies to this object. +""" +type RepositoryInteractionAbility { + """ + The time the currently active limit expires. + """ + expiresAt: DateTime + + """ + The current limit that is enabled on this object. + """ + limit: RepositoryInteractionLimit! + + """ + The origin of the currently active interaction limit. + """ + origin: RepositoryInteractionLimitOrigin! +} + +""" +A repository interaction limit. +""" +enum RepositoryInteractionLimit { + """ + Users that are not collaborators will not be able to interact with the repository. + """ + COLLABORATORS_ONLY + + """ + Users that have not previously committed to a repository’s default branch will be unable to interact with the repository. + """ + CONTRIBUTORS_ONLY + + """ + Users that have recently created their account will be unable to interact with the repository. + """ + EXISTING_USERS + + """ + No interaction limits are enabled. + """ + NO_LIMIT +} + +""" +Indicates where an interaction limit is configured. +""" +enum RepositoryInteractionLimitOrigin { + """ + A limit that is configured at the organization level. + """ + ORGANIZATION + + """ + A limit that is configured at the repository level. + """ + REPOSITORY + + """ + A limit that is configured at the user-wide level. + """ + USER +} + """ An invitation for a user to be added to a repository. """ @@ -37900,6 +37975,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ): Hovercard! id: ID! + """ + The interaction ability settings for this user. + """ + interactionAbility: RepositoryInteractionAbility + """ Whether or not this user is a participant in the GitHub Security Bug Bounty. """ diff --git a/lib/graphql/static/prerendered-objects.json b/lib/graphql/static/prerendered-objects.json index b47ad691b2..acb630625d 100644 --- a/lib/graphql/static/prerendered-objects.json +++ b/lib/graphql/static/prerendered-objects.json @@ -1,6 +1,6 @@ { "dotcom": { - "html": "

\n
\n

\n ActorLocation\n

\n

Location information for an actor.

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

Fields

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

city (String)

City.

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

country (String)

Country name.

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

countryCode (String)

Country code.

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

region (String)

Region name.

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

regionCode (String)

Region or state code.

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

\n AddedToProjectEvent\n

\n

Represents aadded_to_projectevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

project (Project)

Project referenced by event.

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

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

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

projectCard (ProjectCard)

Project card referenced by this project event.

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

Preview notice

\n

projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

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

projectColumnName (String!)

Column name referenced by this project event.

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

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

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

\n App\n

\n

A GitHub App.

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

\n \n \n\n \n

Fields

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

description (String)

The description of the app.

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

logoBackgroundColor (String!)

The hex color code, without the leading '#', for the logo background.

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

logoUrl (URI!)

A URL pointing to the app's logo.

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

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting image.

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

name (String!)

The name of the app.

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

slug (String!)

A slug based on the name of the app for use in URLs.

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

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

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

url (URI!)

The URL to the app's homepage.

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

\n AssignedEvent\n

\n

Represents anassignedevent on any assignable object.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

assignable (Assignable!)

Identifies the assignable associated with the event.

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

assignee (Assignee)

Identifies the user or mannequin that was assigned.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

user (User)

Identifies the user who was assigned.

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

Deprecation notice

\n

user is deprecated.

Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

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

\n AutomaticBaseChangeFailedEvent\n

\n

Represents aautomatic_base_change_failedevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

newBase (String!)

The new base for this PR.

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

oldBase (String!)

The old base for this PR.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

\n AutomaticBaseChangeSucceededEvent\n

\n

Represents aautomatic_base_change_succeededevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

newBase (String!)

The new base for this PR.

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

oldBase (String!)

The old base for this PR.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

\n BaseRefChangedEvent\n

\n

Represents abase_ref_changedevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

currentRefName (String!)

Identifies the name of the base ref for the pull request after it was changed.

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

databaseId (Int)

Identifies the primary key from the database.

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

previousRefName (String!)

Identifies the name of the base ref for the pull request before it was changed.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

\n BaseRefDeletedEvent\n

\n

Represents abase_ref_deletedevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

baseRefName (String)

Identifies the name of the Ref associated with the base_ref_deleted event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

pullRequest (PullRequest)

PullRequest referenced by event.

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

\n BaseRefForcePushedEvent\n

\n

Represents abase_ref_force_pushedevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

afterCommit (Commit)

Identifies the after commit SHA for thebase_ref_force_pushedevent.

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

beforeCommit (Commit)

Identifies the before commit SHA for thebase_ref_force_pushedevent.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

ref (Ref)

Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

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

\n Blame\n

\n

Represents a Git blame.

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

Fields

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

ranges ([BlameRange!]!)

The list of ranges from a Git blame.

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

\n BlameRange\n

\n

Represents a range of information from a Git blame.

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

Fields

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

age (Int!)

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's change.

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

commit (Commit!)

Identifies the line author.

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

endingLine (Int!)

The ending line for the range.

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

startingLine (Int!)

The starting line for the range.

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

\n Blob\n

\n

Represents a Git blob.

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

\n \n \n\n \n

Fields

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

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

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

byteSize (Int!)

Byte size of Blob object.

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

commitResourcePath (URI!)

The HTTP path for this Git object.

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

commitUrl (URI!)

The HTTP URL for this Git object.

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

isBinary (Boolean)

Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

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

isTruncated (Boolean!)

Indicates whether the contents is truncated.

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

oid (GitObjectID!)

The Git object ID.

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

repository (Repository!)

The Repository the Git object belongs to.

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

text (String)

UTF8 text data or null if the Blob is binary.

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

\n Bot\n

\n

A special type of user which takes actions on behalf of GitHub Apps.

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

\n \n \n\n \n

Fields

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

avatarUrl (URI!)

A URL pointing to the GitHub App's public avatar.

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

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

login (String!)

The username of the actor.

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

resourcePath (URI!)

The HTTP path for this bot.

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

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

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

url (URI!)

The HTTP URL for this bot.

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

\n BranchProtectionRule\n

\n

A branch protection rule.

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

\n \n \n\n \n

Fields

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

allowsDeletions (Boolean!)

Can this branch be deleted.

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

allowsForcePushes (Boolean!)

Are force pushes allowed on this branch.

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

branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

A list of conflicts matching branches protection rule and other branch protection rules.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

creator (Actor)

The actor who created this branch protection rule.

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

databaseId (Int)

Identifies the primary key from the database.

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

dismissesStaleReviews (Boolean!)

Will new commits pushed to matching branches dismiss pull request review approvals.

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

isAdminEnforced (Boolean!)

Can admins overwrite branch protection.

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

matchingRefs (RefConnection!)

Repository refs that are protected by this rule.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters refs with query on name.

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

pattern (String!)

Identifies the protection rule pattern.

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

pushAllowances (PushAllowanceConnection!)

A list push allowances for this branch protection rule.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

repository (Repository)

The repository associated with this branch protection rule.

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

requiredApprovingReviewCount (Int)

Number of approving reviews required to update matching branches.

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

requiredStatusCheckContexts ([String])

List of required status check contexts that must pass for commits to be accepted to matching branches.

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

requiresApprovingReviews (Boolean!)

Are approving reviews required to update matching branches.

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

requiresCodeOwnerReviews (Boolean!)

Are reviews from code owners required to update matching branches.

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

requiresCommitSignatures (Boolean!)

Are commits required to be signed.

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

requiresLinearHistory (Boolean!)

Are merge commits prohibited from being pushed to this branch.

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

requiresStatusChecks (Boolean!)

Are status checks required to update matching branches.

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

requiresStrictStatusChecks (Boolean!)

Are branches required to be up to date before merging.

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

restrictsPushes (Boolean!)

Is pushing to matching branches restricted.

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

restrictsReviewDismissals (Boolean!)

Is dismissal of pull request reviews restricted.

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

reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

A list review dismissal allowances for this branch protection rule.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

\n BranchProtectionRuleConflict\n

\n

A conflict between two branch protection rules.

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

Fields

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

branchProtectionRule (BranchProtectionRule)

Identifies the branch protection rule.

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

conflictingBranchProtectionRule (BranchProtectionRule)

Identifies the conflicting branch protection rule.

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

ref (Ref)

Identifies the branch ref that has conflicting rules.

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

\n BranchProtectionRuleConflictConnection\n

\n

The connection type for BranchProtectionRuleConflict.

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

Fields

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

edges ([BranchProtectionRuleConflictEdge])

A list of edges.

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

nodes ([BranchProtectionRuleConflict])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n BranchProtectionRuleConflictEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (BranchProtectionRuleConflict)

The item at the end of the edge.

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

\n BranchProtectionRuleConnection\n

\n

The connection type for BranchProtectionRule.

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

Fields

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

edges ([BranchProtectionRuleEdge])

A list of edges.

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

nodes ([BranchProtectionRule])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n BranchProtectionRuleEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (BranchProtectionRule)

The item at the end of the edge.

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

\n CheckAnnotation\n

\n

A single check annotation.

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

Fields

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

annotationLevel (CheckAnnotationLevel)

The annotation's severity level.

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

blobUrl (URI!)

The path to the file that this annotation was made on.

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

databaseId (Int)

Identifies the primary key from the database.

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

location (CheckAnnotationSpan!)

The position of this annotation.

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

message (String!)

The annotation's message.

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

path (String!)

The path that this annotation was made on.

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

rawDetails (String)

Additional information about the annotation.

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

title (String)

The annotation's title.

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

\n CheckAnnotationConnection\n

\n

The connection type for CheckAnnotation.

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

Fields

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

edges ([CheckAnnotationEdge])

A list of edges.

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

nodes ([CheckAnnotation])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CheckAnnotationEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CheckAnnotation)

The item at the end of the edge.

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

\n CheckAnnotationPosition\n

\n

A character position in a check annotation.

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

Fields

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

column (Int)

Column number (1 indexed).

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

line (Int!)

Line number (1 indexed).

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

\n CheckAnnotationSpan\n

\n

An inclusive pair of positions for a check annotation.

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

Fields

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

end (CheckAnnotationPosition!)

End position (inclusive).

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

start (CheckAnnotationPosition!)

Start position (inclusive).

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

\n CheckRun\n

\n

A check run.

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

\n \n \n\n \n

Fields

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

annotations (CheckAnnotationConnection)

The check run's annotations.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

checkSuite (CheckSuite!)

The check suite that this run is a part of.

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

completedAt (DateTime)

Identifies the date and time when the check run was completed.

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

conclusion (CheckConclusionState)

The conclusion of the check run.

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

databaseId (Int)

Identifies the primary key from the database.

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

detailsUrl (URI)

The URL from which to find full details of the check run on the integrator's site.

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

externalId (String)

A reference for the check run on the integrator's system.

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

name (String!)

The name of the check for this check run.

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

permalink (URI!)

The permalink to the check run summary.

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

repository (Repository!)

The repository associated with this check run.

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

resourcePath (URI!)

The HTTP path for this check run.

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

startedAt (DateTime)

Identifies the date and time when the check run was started.

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

status (CheckStatusState!)

The current status of the check run.

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

summary (String)

A string representing the check run's summary.

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

text (String)

A string representing the check run's text.

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

title (String)

A string representing the check run.

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

url (URI!)

The HTTP URL for this check run.

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

\n CheckRunConnection\n

\n

The connection type for CheckRun.

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

Fields

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

edges ([CheckRunEdge])

A list of edges.

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

nodes ([CheckRun])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CheckRunEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CheckRun)

The item at the end of the edge.

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

\n CheckSuite\n

\n

A check suite.

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

\n \n \n\n \n

Fields

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

app (App)

The GitHub App which created this check suite.

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

branch (Ref)

The name of the branch for this check suite.

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

checkRuns (CheckRunConnection)

The check runs associated with a check suite.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (CheckRunFilter)

\n

Filters the check runs by this type.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

commit (Commit!)

The commit for this check suite.

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

conclusion (CheckConclusionState)

The conclusion of this check suite.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

matchingPullRequests (PullRequestConnection)

A list of open pull requests matching the check suite.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

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

push (Push)

The push that triggered this check suite.

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

repository (Repository!)

The repository associated with this check suite.

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

resourcePath (URI!)

The HTTP path for this check suite.

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

status (CheckStatusState!)

The status of this check suite.

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

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

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

url (URI!)

The HTTP URL for this check suite.

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

\n CheckSuiteConnection\n

\n

The connection type for CheckSuite.

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

Fields

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

edges ([CheckSuiteEdge])

A list of edges.

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

nodes ([CheckSuite])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CheckSuiteEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CheckSuite)

The item at the end of the edge.

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

\n ClosedEvent\n

\n

Represents aclosedevent on any Closable.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

closable (Closable!)

Object that was closed.

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

closer (Closer)

Object which triggered the creation of this event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

resourcePath (URI!)

The HTTP path for this closed event.

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

url (URI!)

The HTTP URL for this closed event.

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

\n CodeOfConduct\n

\n

The Code of Conduct for a repository.

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

\n \n \n\n \n

Fields

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

body (String)

The body of the Code of Conduct.

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

key (String!)

The key for the Code of Conduct.

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

name (String!)

The formal name of the Code of Conduct.

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

resourcePath (URI)

The HTTP path for this Code of Conduct.

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

url (URI)

The HTTP URL for this Code of Conduct.

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

\n CommentDeletedEvent\n

\n

Represents acomment_deletedevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

deletedCommentAuthor (Actor)

The user who authored the deleted comment.

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

\n Commit\n

\n

Represents a Git commit.

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

\n \n \n\n \n

Fields

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

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

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

additions (Int!)

The number of additions in this commit.

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

associatedPullRequests (PullRequestConnection)

The pull requests associated with a commit.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (PullRequestOrder)

\n

Ordering options for pull requests.

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

author (GitActor)

Authorship details of the commit.

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

authoredByCommitter (Boolean!)

Check if the committer and the author match.

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

authoredDate (DateTime!)

The datetime when this commit was authored.

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

authors (GitActorConnection!)

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.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

blame (Blame!)

Fetches git blame information.

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

Arguments

\n\n
\n

path (String!)

\n

The file whose Git blame information you want.

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

changedFiles (Int!)

The number of changed files in this commit.

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

checkSuites (CheckSuiteConnection)

The check suites associated with a commit.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (CheckSuiteFilter)

\n

Filters the check suites by this type.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

comments (CommitCommentConnection!)

Comments made on the commit.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

commitResourcePath (URI!)

The HTTP path for this Git object.

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

commitUrl (URI!)

The HTTP URL for this Git object.

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

committedDate (DateTime!)

The datetime when this commit was committed.

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

committedViaWeb (Boolean!)

Check if commited via GitHub web UI.

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

committer (GitActor)

Committership details of the commit.

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

deletions (Int!)

The number of deletions in this commit.

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

deployments (DeploymentConnection)

The deployments associated with a commit.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

environments ([String!])

\n

Environments to list deployments for.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (DeploymentOrder)

\n

Ordering options for deployments returned from the connection.

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

file (TreeEntry)

The tree entry representing the file located at the given path.

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

Arguments

\n\n
\n

path (String!)

\n

The path for the file.

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

history (CommitHistoryConnection!)

The linear commit history starting from (and including) this commit, in the same order as git log.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

author (CommitAuthor)

\n

If non-null, filters history to only show commits with matching authorship.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

path (String)

\n

If non-null, filters history to only show commits touching files under this path.

\n\n
\n\n
\n

since (GitTimestamp)

\n

Allows specifying a beginning time or date for fetching commits.

\n\n
\n\n
\n

until (GitTimestamp)

\n

Allows specifying an ending time or date for fetching commits.

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

message (String!)

The Git commit message.

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

messageBody (String!)

The Git commit message body.

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

messageBodyHTML (HTML!)

The commit message body rendered to HTML.

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

messageHeadline (String!)

The Git commit message headline.

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

messageHeadlineHTML (HTML!)

The commit message headline rendered to HTML.

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

oid (GitObjectID!)

The Git object ID.

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

onBehalfOf (Organization)

The organization this commit was made on behalf of.

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

parents (CommitConnection!)

The parents of a commit.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

pushedDate (DateTime)

The datetime when this commit was pushed.

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

repository (Repository!)

The Repository this commit belongs to.

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

resourcePath (URI!)

The HTTP path for this commit.

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

signature (GitSignature)

Commit signing information, if present.

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

status (Status)

Status information for this commit.

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

statusCheckRollup (StatusCheckRollup)

Check and Status rollup information for this commit.

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

submodules (SubmoduleConnection!)

Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

tarballUrl (URI!)

Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

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

tree (Tree!)

Commit's root Tree.

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

treeResourcePath (URI!)

The HTTP path for the tree of this commit.

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

treeUrl (URI!)

The HTTP URL for the tree of this commit.

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

url (URI!)

The HTTP URL for this commit.

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

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

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

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

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

zipballUrl (URI!)

Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

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

\n CommitComment\n

\n

Represents a comment on a given Commit.

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

\n \n \n\n \n

Fields

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

author (Actor)

The actor who authored the comment.

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

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

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

body (String!)

Identifies the comment body.

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

bodyHTML (HTML!)

The body rendered to HTML.

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

bodyText (String!)

The body rendered to text.

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

commit (Commit)

Identifies the commit associated with the comment, if the commit exists.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

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

databaseId (Int)

Identifies the primary key from the database.

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

editor (Actor)

The actor who edited the comment.

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

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

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

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

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

lastEditedAt (DateTime)

The moment the editor made the last edit.

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

minimizedReason (String)

Returns why the comment was minimized.

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

path (String)

Identifies the file path associated with the comment.

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

position (Int)

Identifies the line position associated with the comment.

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

publishedAt (DateTime)

Identifies when the comment was published at.

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

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

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

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

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

repository (Repository!)

The repository associated with this node.

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

resourcePath (URI!)

The HTTP path permalink for this commit comment.

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

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

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

url (URI!)

The HTTP URL permalink for this commit comment.

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

userContentEdits (UserContentEditConnection)

A list of edits to this content.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

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

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

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

viewerCanReact (Boolean!)

Can user react to this subject.

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

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

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

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

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

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

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

\n CommitCommentConnection\n

\n

The connection type for CommitComment.

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

Fields

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

edges ([CommitCommentEdge])

A list of edges.

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

nodes ([CommitComment])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CommitCommentEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CommitComment)

The item at the end of the edge.

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

\n CommitCommentThread\n

\n

A thread of comments on a commit.

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

\n \n \n\n \n

Fields

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

comments (CommitCommentConnection!)

The comments that exist in this thread.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

commit (Commit)

The commit the comments were made on.

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

path (String)

The file the comments were made on.

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

position (Int)

The position in the diff for the commit that the comment was made on.

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

repository (Repository!)

The repository associated with this node.

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

\n CommitConnection\n

\n

The connection type for Commit.

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

Fields

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

edges ([CommitEdge])

A list of edges.

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

nodes ([Commit])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CommitContributionsByRepository\n

\n

This aggregates commits made by a user within one repository.

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

Fields

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

contributions (CreatedCommitContributionConnection!)

The commit contributions, each representing a day.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (CommitContributionOrder)

\n

Ordering options for commit contributions returned from the connection.

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

repository (Repository!)

The repository in which the commits were made.

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

resourcePath (URI!)

The HTTP path for the user's commits to the repository in this time range.

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

url (URI!)

The HTTP URL for the user's commits to the repository in this time range.

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

\n CommitEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (Commit)

The item at the end of the edge.

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

\n CommitHistoryConnection\n

\n

The connection type for Commit.

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

Fields

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

edges ([CommitEdge])

A list of edges.

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

nodes ([Commit])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n ConnectedEvent\n

\n

Represents aconnectedevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

isCrossRepository (Boolean!)

Reference originated in a different repository.

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

source (ReferencedSubject!)

Issue or pull request that made the reference.

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

subject (ReferencedSubject!)

Issue or pull request which was connected.

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

\n ContentAttachment\n

\n

A content attachment.

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

Fields

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

body (String!)

The body text of the content attachment. This parameter supports markdown.

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

contentReference (ContentReference!)

The content reference that the content attachment is attached to.

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

databaseId (Int!)

Identifies the primary key from the database.

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

title (String!)

The title of the content attachment.

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

\n ContentReference\n

\n

A content reference.

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

Fields

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

databaseId (Int!)

Identifies the primary key from the database.

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

reference (String!)

The reference of the content reference.

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

\n ContributionCalendar\n

\n

A calendar of contributions made on GitHub by a user.

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

Fields

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

colors ([String!]!)

A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

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

isHalloween (Boolean!)

Determine if the color set was chosen because it's currently Halloween.

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

months ([ContributionCalendarMonth!]!)

A list of the months of contributions in this calendar.

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

totalContributions (Int!)

The count of total contributions in the calendar.

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

weeks ([ContributionCalendarWeek!]!)

A list of the weeks of contributions in this calendar.

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

\n ContributionCalendarDay\n

\n

Represents a single day of contributions on GitHub by a user.

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

Fields

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

color (String!)

The hex color code that represents how many contributions were made on this day compared to others in the calendar.

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

contributionCount (Int!)

How many contributions were made by the user on this day.

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

date (Date!)

The day this square represents.

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

weekday (Int!)

A number representing which day of the week this square represents, e.g., 1 is Monday.

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

\n ContributionCalendarMonth\n

\n

A month of contributions in a user's contribution graph.

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

Fields

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

firstDay (Date!)

The date of the first day of this month.

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

name (String!)

The name of the month.

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

totalWeeks (Int!)

How many weeks started in this month.

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

year (Int!)

The year the month occurred in.

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

\n ContributionCalendarWeek\n

\n

A week of contributions in a user's contribution graph.

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

Fields

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

contributionDays ([ContributionCalendarDay!]!)

The days of contributions in this week.

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

firstDay (Date!)

The date of the earliest square in this week.

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

\n ContributionsCollection\n

\n

A contributions collection aggregates contributions such as opened issues and commits created by a user.

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

Fields

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

commitContributionsByRepository ([CommitContributionsByRepository!]!)

Commit contributions made by the user, grouped by repository.

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

Arguments

\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

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

contributionCalendar (ContributionCalendar!)

A calendar of this user's contributions on GitHub.

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

contributionYears ([Int!]!)

The years the user has been making contributions with the most recent year first.

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

doesEndInCurrentMonth (Boolean!)

Determine if this collection's time span ends in the current month.

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

earliestRestrictedContributionDate (Date)

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.

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

endedAt (DateTime!)

The ending date and time of this collection.

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

firstIssueContribution (CreatedIssueOrRestrictedContribution)

The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection'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.

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

firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection'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.

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

firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

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

hasActivityInThePast (Boolean!)

Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

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

hasAnyContributions (Boolean!)

Determine if there are any contributions in this collection.

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

hasAnyRestrictedContributions (Boolean!)

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.

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

isSingleDay (Boolean!)

Whether or not the collector's time span is all within the same day.

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

issueContributions (CreatedIssueContributionConnection!)

A list of issues the user opened.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

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

issueContributionsByRepository ([IssueContributionsByRepository!]!)

Issue contributions made by the user, grouped by repository.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

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

joinedGitHubContribution (JoinedGitHubContribution)

When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

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

latestRestrictedContributionDate (Date)

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.

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

mostRecentCollectionWithActivity (ContributionsCollection)

When this collection'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.

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

mostRecentCollectionWithoutActivity (ContributionsCollection)

Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

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

popularIssueContribution (CreatedIssueContribution)

The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

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

popularPullRequestContribution (CreatedPullRequestContribution)

The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

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

pullRequestContributions (CreatedPullRequestContributionConnection!)

Pull request contributions made by the user.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

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

pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

Pull request contributions made by the user, grouped by repository.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

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

pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

Pull request review contributions made by the user.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

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

pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

Pull request review contributions made by the user, grouped by repository.

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

Arguments

\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

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

repositoryContributions (CreatedRepositoryContributionConnection!)

A list of repositories owned by the user that the user created in this time range.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first repository ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

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

restrictedContributionsCount (Int!)

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.

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

startedAt (DateTime!)

The beginning date and time of this collection.

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

totalCommitContributions (Int!)

How many commits were made by the user in this time span.

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

totalIssueContributions (Int!)

How many issues the user opened.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from this count.

\n

The default value is false.

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

totalPullRequestContributions (Int!)

How many pull requests the user opened.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from this count.

\n

The default value is false.

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

totalPullRequestReviewContributions (Int!)

How many pull request reviews the user left.

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

totalRepositoriesWithContributedCommits (Int!)

How many different repositories the user committed to.

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

totalRepositoriesWithContributedIssues (Int!)

How many different repositories the user opened issues in.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from this count.

\n

The default value is false.

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

totalRepositoriesWithContributedPullRequestReviews (Int!)

How many different repositories the user left pull request reviews in.

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

totalRepositoriesWithContributedPullRequests (Int!)

How many different repositories the user opened pull requests in.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from this count.

\n

The default value is false.

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

totalRepositoryContributions (Int!)

How many repositories the user created.

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

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first repository ever be excluded from this count.

\n

The default value is false.

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

user (User!)

The user who made the contributions in this collection.

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

\n ConvertToDraftEvent\n

\n

Represents aconvert_to_draftevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

resourcePath (URI!)

The HTTP path for this convert to draft event.

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

url (URI!)

The HTTP URL for this convert to draft event.

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

\n ConvertedNoteToIssueEvent\n

\n

Represents aconverted_note_to_issueevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

project (Project)

Project referenced by event.

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

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

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

projectCard (ProjectCard)

Project card referenced by this project event.

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

Preview notice

\n

projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

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

projectColumnName (String!)

Column name referenced by this project event.

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

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

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

\n CreatedCommitContribution\n

\n

Represents the contribution a user made by committing to a repository.

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

\n \n \n\n \n

Fields

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

commitCount (Int!)

How many commits were made on this day to this repository by the user.

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

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

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

occurredAt (DateTime!)

When this contribution was made.

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

repository (Repository!)

The repository the user made a commit in.

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

resourcePath (URI!)

The HTTP path for this contribution.

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

url (URI!)

The HTTP URL for this contribution.

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

user (User!)

The user who made this contribution.

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

\n CreatedCommitContributionConnection\n

\n

The connection type for CreatedCommitContribution.

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

Fields

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

edges ([CreatedCommitContributionEdge])

A list of edges.

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

nodes ([CreatedCommitContribution])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of commits across days and repositories in the connection.

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

\n CreatedCommitContributionEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CreatedCommitContribution)

The item at the end of the edge.

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

\n CreatedIssueContribution\n

\n

Represents the contribution a user made on GitHub by opening an issue.

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

\n \n \n\n \n

Fields

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

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

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

issue (Issue!)

The issue that was opened.

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

occurredAt (DateTime!)

When this contribution was made.

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

resourcePath (URI!)

The HTTP path for this contribution.

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

url (URI!)

The HTTP URL for this contribution.

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

user (User!)

The user who made this contribution.

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

\n CreatedIssueContributionConnection\n

\n

The connection type for CreatedIssueContribution.

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

Fields

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

edges ([CreatedIssueContributionEdge])

A list of edges.

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

nodes ([CreatedIssueContribution])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CreatedIssueContributionEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CreatedIssueContribution)

The item at the end of the edge.

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

\n CreatedPullRequestContribution\n

\n

Represents the contribution a user made on GitHub by opening a pull request.

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

\n \n \n\n \n

Fields

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

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

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

occurredAt (DateTime!)

When this contribution was made.

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

pullRequest (PullRequest!)

The pull request that was opened.

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

resourcePath (URI!)

The HTTP path for this contribution.

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

url (URI!)

The HTTP URL for this contribution.

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

user (User!)

The user who made this contribution.

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

\n CreatedPullRequestContributionConnection\n

\n

The connection type for CreatedPullRequestContribution.

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

Fields

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

edges ([CreatedPullRequestContributionEdge])

A list of edges.

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

nodes ([CreatedPullRequestContribution])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CreatedPullRequestContributionEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CreatedPullRequestContribution)

The item at the end of the edge.

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

\n CreatedPullRequestReviewContribution\n

\n

Represents the contribution a user made by leaving a review on a pull request.

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

\n \n \n\n \n

Fields

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

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

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

occurredAt (DateTime!)

When this contribution was made.

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

pullRequest (PullRequest!)

The pull request the user reviewed.

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

pullRequestReview (PullRequestReview!)

The review the user left on the pull request.

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

repository (Repository!)

The repository containing the pull request that the user reviewed.

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

resourcePath (URI!)

The HTTP path for this contribution.

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

url (URI!)

The HTTP URL for this contribution.

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

user (User!)

The user who made this contribution.

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

\n CreatedPullRequestReviewContributionConnection\n

\n

The connection type for CreatedPullRequestReviewContribution.

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

Fields

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

edges ([CreatedPullRequestReviewContributionEdge])

A list of edges.

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

nodes ([CreatedPullRequestReviewContribution])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CreatedPullRequestReviewContributionEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CreatedPullRequestReviewContribution)

The item at the end of the edge.

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

\n CreatedRepositoryContribution\n

\n

Represents the contribution a user made on GitHub by creating a repository.

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

\n \n \n\n \n

Fields

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

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

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

occurredAt (DateTime!)

When this contribution was made.

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

repository (Repository!)

The repository that was created.

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

resourcePath (URI!)

The HTTP path for this contribution.

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

url (URI!)

The HTTP URL for this contribution.

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

user (User!)

The user who made this contribution.

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

\n CreatedRepositoryContributionConnection\n

\n

The connection type for CreatedRepositoryContribution.

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

Fields

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

edges ([CreatedRepositoryContributionEdge])

A list of edges.

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

nodes ([CreatedRepositoryContribution])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n CreatedRepositoryContributionEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (CreatedRepositoryContribution)

The item at the end of the edge.

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

\n CrossReferencedEvent\n

\n

Represents a mention made by one issue or pull request to another.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

isCrossRepository (Boolean!)

Reference originated in a different repository.

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

referencedAt (DateTime!)

Identifies when the reference was made.

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

resourcePath (URI!)

The HTTP path for this pull request.

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

source (ReferencedSubject!)

Issue or pull request that made the reference.

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

target (ReferencedSubject!)

Issue or pull request to which the reference was made.

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

url (URI!)

The HTTP URL for this pull request.

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

willCloseTarget (Boolean!)

Checks if the target will be closed when the source is merged.

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

\n DemilestonedEvent\n

\n

Represents ademilestonedevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

milestoneTitle (String!)

Identifies the milestone title associated with thedemilestonedevent.

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

subject (MilestoneItem!)

Object referenced by event.

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

\n DependencyGraphDependency\n

\n

A dependency manifest entry.

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

Preview notice

\n

DependencyGraphDependency is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

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

Fields

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

hasDependencies (Boolean!)

Does the dependency itself have dependencies?.

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

packageManager (String)

The dependency package manager.

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

packageName (String!)

The required package name.

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

repository (Repository)

The repository containing the package.

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

requirements (String!)

The dependency version requirements.

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

\n DependencyGraphDependencyConnection\n

\n

The connection type for DependencyGraphDependency.

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

Preview notice

\n

DependencyGraphDependencyConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

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

Fields

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

edges ([DependencyGraphDependencyEdge])

A list of edges.

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

nodes ([DependencyGraphDependency])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n DependencyGraphDependencyEdge\n

\n

An edge in a connection.

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

Preview notice

\n

DependencyGraphDependencyEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (DependencyGraphDependency)

The item at the end of the edge.

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

\n DependencyGraphManifest\n

\n

Dependency manifest for a repository.

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

Preview notice

\n

DependencyGraphManifest is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

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

\n \n \n\n \n

Fields

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

blobPath (String!)

Path to view the manifest file blob.

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

dependencies (DependencyGraphDependencyConnection)

A list of manifest dependencies.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

dependenciesCount (Int)

The number of dependencies listed in the manifest.

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

exceedsMaxSize (Boolean!)

Is the manifest too big to parse?.

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

filename (String!)

Fully qualified manifest filename.

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

parseable (Boolean!)

Were we able to parse the manifest?.

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

repository (Repository!)

The repository containing the manifest.

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

\n DependencyGraphManifestConnection\n

\n

The connection type for DependencyGraphManifest.

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

Preview notice

\n

DependencyGraphManifestConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

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

Fields

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

edges ([DependencyGraphManifestEdge])

A list of edges.

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

nodes ([DependencyGraphManifest])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n DependencyGraphManifestEdge\n

\n

An edge in a connection.

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

Preview notice

\n

DependencyGraphManifestEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (DependencyGraphManifest)

The item at the end of the edge.

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

\n DeployKey\n

\n

A repository deploy key.

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

\n \n \n\n \n

Fields

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

key (String!)

The deploy key.

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

readOnly (Boolean!)

Whether or not the deploy key is read only.

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

title (String!)

The deploy key title.

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

verified (Boolean!)

Whether or not the deploy key has been verified.

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

\n DeployKeyConnection\n

\n

The connection type for DeployKey.

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

Fields

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

edges ([DeployKeyEdge])

A list of edges.

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

nodes ([DeployKey])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n DeployKeyEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (DeployKey)

The item at the end of the edge.

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

\n DeployedEvent\n

\n

Represents adeployedevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

deployment (Deployment!)

The deployment associated with thedeployedevent.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

ref (Ref)

The ref associated with thedeployedevent.

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

\n Deployment\n

\n

Represents triggered deployment instance.

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

\n \n \n\n \n

Fields

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

commit (Commit)

Identifies the commit sha of the deployment.

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

commitOid (String!)

Identifies the oid of the deployment commit, even if the commit has been deleted.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

creator (Actor!)

Identifies the actor who triggered the deployment.

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

databaseId (Int)

Identifies the primary key from the database.

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

description (String)

The deployment description.

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

environment (String)

The latest environment to which this deployment was made.

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

latestEnvironment (String)

The latest environment to which this deployment was made.

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

latestStatus (DeploymentStatus)

The latest status of this deployment.

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

originalEnvironment (String)

The original environment to which this deployment was made.

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

payload (String)

Extra information that a deployment system might need.

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

ref (Ref)

Identifies the Ref of the deployment, if the deployment was created by ref.

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

repository (Repository!)

Identifies the repository associated with the deployment.

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

state (DeploymentState)

The current state of the deployment.

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

statuses (DeploymentStatusConnection)

A list of statuses associated with the deployment.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

task (String)

The deployment task.

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

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

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

\n DeploymentConnection\n

\n

The connection type for Deployment.

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

Fields

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

edges ([DeploymentEdge])

A list of edges.

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

nodes ([Deployment])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n DeploymentEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (Deployment)

The item at the end of the edge.

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

\n DeploymentEnvironmentChangedEvent\n

\n

Represents adeployment_environment_changedevent on a given pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

deploymentStatus (DeploymentStatus!)

The deployment status that updated the deployment environment.

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

pullRequest (PullRequest!)

PullRequest referenced by event.

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

\n DeploymentStatus\n

\n

Describes the status of a given deployment attempt.

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

\n \n \n\n \n

Fields

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

creator (Actor!)

Identifies the actor who triggered the deployment.

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

deployment (Deployment!)

Identifies the deployment associated with status.

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

description (String)

Identifies the description of the deployment.

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

environment (String)

Identifies the environment of the deployment at the time of this deployment status.

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

Preview notice

\n

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

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

environmentUrl (URI)

Identifies the environment URL of the deployment.

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

logUrl (URI)

Identifies the log URL of the deployment.

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

state (DeploymentStatusState!)

Identifies the current state of the deployment.

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

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

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

\n DeploymentStatusConnection\n

\n

The connection type for DeploymentStatus.

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

Fields

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

edges ([DeploymentStatusEdge])

A list of edges.

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

nodes ([DeploymentStatus])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n DeploymentStatusEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (DeploymentStatus)

The item at the end of the edge.

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

\n DisconnectedEvent\n

\n

Represents adisconnectedevent on a given issue or pull request.

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

\n \n \n\n \n

Fields

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

actor (Actor)

Identifies the actor who performed the event.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

isCrossRepository (Boolean!)

Reference originated in a different repository.

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

source (ReferencedSubject!)

Issue or pull request from which the issue was disconnected.

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

subject (ReferencedSubject!)

Issue or pull request which was disconnected.

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

\n Enterprise\n

\n

An account to manage multiple organizations with consolidated policy and billing.

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

\n \n \n\n \n

Fields

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

avatarUrl (URI!)

A URL pointing to the enterprise's public avatar.

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

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

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

billingInfo (EnterpriseBillingInfo)

Enterprise billing information visible to enterprise billing managers.

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

databaseId (Int)

Identifies the primary key from the database.

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

description (String)

The description of the enterprise.

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

descriptionHTML (HTML!)

The description of the enterprise as HTML.

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

location (String)

The location of the enterprise.

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

members (EnterpriseMemberConnection!)

A list of users who are members of this enterprise.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

deployment (EnterpriseUserDeployment)

\n

Only return members within the selected GitHub Enterprise deployment.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseMemberOrder)

\n

Ordering options for members returned from the connection.

\n\n
\n\n
\n

organizationLogins ([String!])

\n

Only return members within the organizations with these logins.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseUserAccountMembershipRole)

\n

The role of the user in the enterprise organization or server.

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

name (String!)

The name of the enterprise.

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

organizations (OrganizationConnection!)

A list of organizations that belong to this enterprise.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

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

ownerInfo (EnterpriseOwnerInfo)

Enterprise information only visible to enterprise owners.

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

resourcePath (URI!)

The HTTP path for this enterprise.

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

slug (String!)

The URL-friendly identifier for the enterprise.

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

url (URI!)

The HTTP URL for this enterprise.

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

userAccounts (EnterpriseUserAccountConnection!)

A list of user accounts on this enterprise.

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

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

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

viewerIsAdmin (Boolean!)

Is the current viewer an admin of this enterprise?.

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

websiteUrl (URI)

The URL of the enterprise website.

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

\n EnterpriseAdministratorConnection\n

\n

The connection type for User.

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

Fields

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

edges ([EnterpriseAdministratorEdge])

A list of edges.

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

nodes ([User])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n EnterpriseAdministratorEdge\n

\n

A User who is an administrator of an enterprise.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (User)

The item at the end of the edge.

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

role (EnterpriseAdministratorRole!)

The role of the administrator.

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

\n EnterpriseAdministratorInvitation\n

\n

An invitation for a user to become an owner or billing manager of an enterprise.

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

\n \n \n\n \n

Fields

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

createdAt (DateTime!)

Identifies the date and time when the object was created.

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

email (String)

The email of the person who was invited to the enterprise.

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

enterprise (Enterprise!)

The enterprise the invitation is for.

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

invitee (User)

The user who was invited to the enterprise.

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

inviter (User)

The user who created the invitation.

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

role (EnterpriseAdministratorRole!)

The invitee's pending role in the enterprise (owner or billing_manager).

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

\n EnterpriseAdministratorInvitationConnection\n

\n

The connection type for EnterpriseAdministratorInvitation.

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

Fields

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

edges ([EnterpriseAdministratorInvitationEdge])

A list of edges.

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

nodes ([EnterpriseAdministratorInvitation])

A list of nodes.

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

pageInfo (PageInfo!)

Information to aid in pagination.

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

totalCount (Int!)

Identifies the total count of items in the connection.

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

\n EnterpriseAdministratorInvitationEdge\n

\n

An edge in a connection.

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

Fields

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

cursor (String!)

A cursor for use in pagination.

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

node (EnterpriseAdministratorInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseBillingInfo\n

\n

Enterprise billing information visible to enterprise billing managers and owners.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allLicensableUsersCount (Int!)

The number of licenseable users/emails across the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

assetPacks (Int!)

The number of data packs used by all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

availableSeats (Int!)

The number of available seats across all owned organizations based on the unique number of billable users.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

availableSeats is deprecated.

availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n

bandwidthQuota (Float!)

The bandwidth quota in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

bandwidthUsage (Float!)

The bandwidth usage in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

bandwidthUsagePercentage (Int!)

The bandwidth usage as a percentage of the bandwidth quota.

\n\n\n\n\n\n\n\n\n\n\n\n

seats (Int!)

The total seats across all organizations owned by the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

seats is deprecated.

seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n

storageQuota (Float!)

The storage quota in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

storageUsage (Float!)

The storage usage in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

storageUsagePercentage (Int!)

The storage usage as a percentage of the storage quota.

\n\n\n\n\n\n\n\n\n\n\n\n

totalAvailableLicenses (Int!)

The number of available licenses across all owned organizations based on the unique number of billable users.

\n\n\n\n\n\n\n\n\n\n\n\n

totalLicenses (Int!)

The total number of licenses allocated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseIdentityProvider\n

\n

An identity provider configured to provision identities for an enterprise.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

digestMethod (SamlDigestAlgorithm)

The digest algorithm used to sign SAML requests for the identity provider.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise this identity provider belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

externalIdentities (ExternalIdentityConnection!)

ExternalIdentities provisioned by this identity provider.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

idpCertificate (X509Certificate)

The x509 certificate used by the identity provider to sign assertions and responses.

\n\n\n\n\n\n\n\n\n\n\n\n

issuer (String)

The Issuer Entity ID for the SAML identity provider.

\n\n\n\n\n\n\n\n\n\n\n\n

recoveryCodes ([String!])

Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethod (SamlSignatureAlgorithm)

The signature algorithm used to sign SAML requests for the identity provider.

\n\n\n\n\n\n\n\n\n\n\n\n

ssoUrl (URI)

The URL endpoint for the identity provider's SAML SSO.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseMemberConnection\n

\n

The connection type for EnterpriseMember.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseMemberEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseMember])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseMemberEdge\n

\n

A User who is a member of an enterprise through one or more organizations.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the user does not have a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All members consume a license Removal on 2021-01-01 UTC.

\n
\n\n\n\n\n\n\n

node (EnterpriseMember)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOrganizationMembershipConnection\n

\n

The connection type for Organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseOrganizationMembershipEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Organization])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOrganizationMembershipEdge\n

\n

An enterprise organization that a user is a member of.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Organization)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

role (EnterpriseUserAccountMembershipRole!)

The role of the user in the enterprise membership.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOutsideCollaboratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseOutsideCollaboratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOutsideCollaboratorEdge\n

\n

A User who is an outside collaborator of an enterprise through one or more organizations.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the outside collaborator does not have a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All outside collaborators consume a license Removal on 2021-01-01 UTC.

\n
\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (EnterpriseRepositoryInfoConnection!)

The enterprise organization repositories this user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOwnerInfo\n

\n

Enterprise information only visible to enterprise owners.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admins (EnterpriseAdministratorConnection!)

A list of all of the administrators for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseMemberOrder)

\n

Ordering options for administrators returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseAdministratorRole)

\n

The role to filter by.

\n\n
\n\n
\n\n\n

affiliatedUsersWithTwoFactorDisabled (UserConnection!)

A list of users in the enterprise who currently have two-factor authentication disabled.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided private repository forking setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

The setting value for base repository permissions for organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided default repository permission.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (DefaultRepositoryPermissionField!)

\n

The permission to find organizations for.

\n\n
\n\n
\n\n\n

enterpriseServerInstallations (EnterpriseServerInstallationConnection!)

Enterprise Server installations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

connectedOnly (Boolean)

\n

Whether or not to only return installations discovered via GitHub Connect.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerInstallationOrder)

\n

Ordering options for Enterprise Server installations returned.

\n\n
\n\n
\n\n\n

ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

The setting value for whether the enterprise has an IP allow list enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

ipAllowListEntries (IpAllowListEntryConnection!)

The IP addresses that are allowed to access resources owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IpAllowListEntryOrder)

\n

Ordering options for IP allow list entries returned.

\n\n
\n\n
\n\n\n

isUpdatingDefaultRepositoryPermission (Boolean!)

Whether or not the default repository permission is currently being updated.

\n\n\n\n\n\n\n\n\n\n\n\n

isUpdatingTwoFactorRequirement (Boolean!)

Whether the two-factor authentication requirement is currently being enforced.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided can change repository visibility setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanCreateInternalRepositoriesSetting (Boolean)

The setting value for whether members of organizations in the enterprise can create internal repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreatePrivateRepositoriesSetting (Boolean)

The setting value for whether members of organizations in the enterprise can create private repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreatePublicRepositoriesSetting (Boolean)

The setting value for whether members of organizations in the enterprise can create public repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

The setting value for whether members of organizations in the enterprise can create repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided repository creation setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (OrganizationMembersCanCreateRepositoriesSettingValue!)

\n

The setting to find organizations for.

\n\n
\n\n
\n\n\n

membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members with admin permissions for repositories can delete issues.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can delete issues setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can delete repositories setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members of organizations in the enterprise can invite outside collaborators.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can invite collaborators setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members with admin permissions for repositories can update protected branches.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can update protected branches setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members can view dependency insights.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can view dependency insights setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether organization projects are enabled for organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationProjectsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided organization projects setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

A list of outside collaborators across the repositories in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

login (String)

\n

The login of one specific outside collaborator.

\n\n
\n\n
\n

orderBy (EnterpriseMemberOrder)

\n

Ordering options for outside collaborators returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

visibility (RepositoryVisibility)

\n

Only return outside collaborators on repositories with this visibility.

\n\n
\n\n
\n\n\n

pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

A list of pending administrator invitations for the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseAdministratorInvitationOrder)

\n

Ordering options for pending enterprise administrator invitations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseAdministratorRole)

\n

The role to filter by.

\n\n
\n\n
\n\n\n

pendingCollaboratorInvitations (RepositoryInvitationConnection!)

A list of pending collaborator invitations across the repositories in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryInvitationOrder)

\n

Ordering options for pending repository collaborator invitations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

pendingCollaborators (EnterprisePendingCollaboratorConnection!)

A list of pending collaborators across the repositories in the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

pendingCollaborators is deprecated.

Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryInvitationOrder)

\n

Ordering options for pending repository collaborator invitations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

A list of pending member invitations for organizations in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether repository projects are enabled in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryProjectsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided repository projects setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

samlIdentityProvider (EnterpriseIdentityProvider)

The SAML Identity Provider for the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

samlIdentityProviderSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the SAML single sign-on setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (IdentityProviderConfigurationState!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether team discussions are enabled for organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

teamDiscussionsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided team discussions setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

\n\n\n\n\n\n\n\n\n\n\n\n

twoFactorRequiredSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the two-factor authentication setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingCollaboratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterprisePendingCollaboratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingCollaboratorEdge\n

\n

A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the invited collaborator does not have a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All pending collaborators consume a license Removal on 2021-01-01 UTC.

\n
\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (EnterpriseRepositoryInfoConnection!)

The enterprise organization repositories this user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingMemberInvitationConnection\n

\n

The connection type for OrganizationInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterprisePendingMemberInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([OrganizationInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalUniqueUserCount (Int!)

Identifies the total count of unique users in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingMemberInvitationEdge\n

\n

An invitation to be a member in an enterprise organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the invitation has a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All pending members consume a license Removal on 2020-07-01 UTC.

\n
\n\n\n\n\n\n\n

node (OrganizationInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseRepositoryInfo\n

\n

A subset of repository information queryable from an enterprise.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isPrivate (Boolean!)

Identifies if the repository is private.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The repository's name.

\n\n\n\n\n\n\n\n\n\n\n\n

nameWithOwner (String!)

The repository's name with owner.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseRepositoryInfoConnection\n

\n

The connection type for EnterpriseRepositoryInfo.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseRepositoryInfoEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseRepositoryInfo])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseRepositoryInfoEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseRepositoryInfo)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerInstallation\n

\n

An Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

customerName (String!)

The customer name to which the Enterprise Server installation belongs.

\n\n\n\n\n\n\n\n\n\n\n\n

hostName (String!)

The host name of the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

isConnected (Boolean!)

Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

userAccounts (EnterpriseServerUserAccountConnection!)

User accounts on this Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerUserAccountOrder)

\n

Ordering options for Enterprise Server user accounts returned from the connection.

\n\n
\n\n
\n\n\n

userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

User accounts uploads for the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerUserAccountsUploadOrder)

\n

Ordering options for Enterprise Server user accounts uploads returned from the connection.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerInstallationConnection\n

\n

The connection type for EnterpriseServerInstallation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerInstallationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerInstallation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerInstallationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerInstallation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccount\n

\n

A user account on an Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

emails (EnterpriseServerUserAccountEmailConnection!)

User emails belonging to this user account.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerUserAccountEmailOrder)

\n

Ordering options for Enterprise Server user account emails returned from the connection.

\n\n
\n\n
\n\n\n

enterpriseServerInstallation (EnterpriseServerInstallation!)

The Enterprise Server installation on which this user account exists.

\n\n\n\n\n\n\n\n\n\n\n\n

isSiteAdmin (Boolean!)

Whether the user account is a site administrator on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The login of the user account on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

profileName (String)

The profile name of the user account on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

remoteCreatedAt (DateTime!)

The date and time when the user account was created on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

remoteUserId (Int!)

The ID of the user account on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountConnection\n

\n

The connection type for EnterpriseServerUserAccount.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerUserAccountEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerUserAccount])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerUserAccount)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEmail\n

\n

An email belonging to a user account on an Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String!)

The email address.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrimary (Boolean!)

Indicates whether this is the primary email of the associated user account.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

userAccount (EnterpriseServerUserAccount!)

The user account to which the email belongs.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEmailConnection\n

\n

The connection type for EnterpriseServerUserAccountEmail.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerUserAccountEmailEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerUserAccountEmail])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEmailEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerUserAccountEmail)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountsUpload\n

\n

A user accounts upload from an Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise!)

The enterprise to which this upload belongs.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseServerInstallation (EnterpriseServerInstallation!)

The Enterprise Server installation for which this upload was generated.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the file uploaded.

\n\n\n\n\n\n\n\n\n\n\n\n

syncState (EnterpriseServerUserAccountsUploadSyncState!)

The synchronization state of the upload.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountsUploadConnection\n

\n

The connection type for EnterpriseServerUserAccountsUpload.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerUserAccountsUploadEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerUserAccountsUpload])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountsUploadEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerUserAccountsUpload)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseUserAccount\n

\n

An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the enterprise user account's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise!)

The enterprise in which this user account exists.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

An identifier for the enterprise user account, a login or email address.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The name of the enterprise user account.

\n\n\n\n\n\n\n\n\n\n\n\n

organizations (EnterpriseOrganizationMembershipConnection!)

A list of enterprise organizations this user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseUserAccountMembershipRole)

\n

The role of the user in the enterprise organization.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user within the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseUserAccountConnection\n

\n

The connection type for EnterpriseUserAccount.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseUserAccountEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseUserAccount])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseUserAccountEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseUserAccount)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentity\n

\n

An external identity provisioned by SAML SSO or SCIM.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

guid (String!)

The GUID for this identity.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationInvitation (OrganizationInvitation)

Organization invitation for this SCIM-provisioned external identity.

\n\n\n\n\n\n\n\n\n\n\n\n

samlIdentity (ExternalIdentitySamlAttributes)

SAML Identity attributes.

\n\n\n\n\n\n\n\n\n\n\n\n

scimIdentity (ExternalIdentityScimAttributes)

SCIM Identity attributes.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentityConnection\n

\n

The connection type for ExternalIdentity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ExternalIdentityEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ExternalIdentity])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentityEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ExternalIdentity)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentitySamlAttributes\n

\n

SAML attributes for the External Identity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

emails ([UserEmailMetadata!])

The emails associated with the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

familyName (String)

Family name of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

givenName (String)

Given name of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

groups ([String!])

The groups linked to this identity in IDP.

\n\n\n\n\n\n\n\n\n\n\n\n

nameId (String)

The NameID of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

username (String)

The userName of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentityScimAttributes\n

\n

SCIM attributes for the External Identity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

emails ([UserEmailMetadata!])

The emails associated with the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n

familyName (String)

Family name of the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n

givenName (String)

Given name of the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n

groups ([String!])

The groups linked to this identity in IDP.

\n\n\n\n\n\n\n\n\n\n\n\n

username (String)

The userName of the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n FollowerConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n FollowingConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n FundingLink\n

\n

A funding platform link for a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

platform (FundingPlatform!)

The funding platform this link is for.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The configured URL for this funding link.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GenericHovercardContext\n

\n

A generic hovercard context with a message and icon.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Gist\n

\n

A Gist.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (GistCommentConnection!)

A list of comments associated with the gist.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The gist description.

\n\n\n\n\n\n\n\n\n\n\n\n

files ([GistFile])

The files in this gist.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

limit (Int)

\n

The maximum number of files to return.

\n

The default value is 10.

\n
\n\n
\n

oid (GitObjectID)

\n

The oid of the files to return.

\n\n
\n\n
\n\n\n

forks (GistConnection!)

A list of forks associated with the gist.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (GistOrder)

\n

Ordering options for gists returned from the connection.

\n\n
\n\n
\n\n\n

isFork (Boolean!)

Identifies if the gist is a fork.

\n\n\n\n\n\n\n\n\n\n\n\n

isPublic (Boolean!)

Whether the gist is public or not.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The gist name.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (RepositoryOwner)

The gist owner.

\n\n\n\n\n\n\n\n\n\n\n\n

pushedAt (DateTime)

Identifies when the gist was last pushed to.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTML path to this resource.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazerCount (Int!)

Returns a count of how many stargazers there are on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazers (StargazerConnection!)

A list of users who have starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this Gist.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasStarred (Boolean!)

Returns a boolean indicating whether the viewing user has starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistComment\n

\n

Represents a comment on an Gist.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the gist.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the comment body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

gist (Gist!)

The associated gist.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistCommentConnection\n

\n

The connection type for GistComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([GistCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([GistComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (GistComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistConnection\n

\n

The connection type for Gist.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([GistEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Gist])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Gist)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistFile\n

\n

A file in a gist.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

encodedName (String)

The file name encoded to remove characters that are invalid in URL paths.

\n\n\n\n\n\n\n\n\n\n\n\n

encoding (String)

The gist file encoding.

\n\n\n\n\n\n\n\n\n\n\n\n

extension (String)

The file extension from the file name.

\n\n\n\n\n\n\n\n\n\n\n\n

isImage (Boolean!)

Indicates if this file is an image.

\n\n\n\n\n\n\n\n\n\n\n\n

isTruncated (Boolean!)

Whether the file's contents were truncated.

\n\n\n\n\n\n\n\n\n\n\n\n

language (Language)

The programming language this file is written in.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The gist file name.

\n\n\n\n\n\n\n\n\n\n\n\n

size (Int)

The gist file size in bytes.

\n\n\n\n\n\n\n\n\n\n\n\n

text (String)

UTF8 text data or null if the file is binary.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

truncate (Int)

\n

Optionally truncate the returned file to this length.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitActor\n

\n

Represents an actor in a Git commit (ie. an author or committer).

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the author's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

date (GitTimestamp)

The timestamp of the Git action (authoring or committing).

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email in the Git commit.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The name in the Git commit.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The GitHub user corresponding to the email field. Null if no such user exists.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitActorConnection\n

\n

The connection type for GitActor.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([GitActorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([GitActor])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitActorEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (GitActor)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitHubMetadata\n

\n

Represents information about the GitHub instance.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

gitHubServicesSha (GitObjectID!)

Returns a String that's a SHA of github-services.

\n\n\n\n\n\n\n\n\n\n\n\n

gitIpAddresses ([String!])

IP addresses that users connect to for git operations.

\n\n\n\n\n\n\n\n\n\n\n\n

hookIpAddresses ([String!])

IP addresses that service hooks are sent from.

\n\n\n\n\n\n\n\n\n\n\n\n

importerIpAddresses ([String!])

IP addresses that the importer connects from.

\n\n\n\n\n\n\n\n\n\n\n\n

isPasswordAuthenticationVerifiable (Boolean!)

Whether or not users are verified.

\n\n\n\n\n\n\n\n\n\n\n\n

pagesIpAddresses ([String!])

IP addresses for GitHub Pages' A records.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GpgSignature\n

\n

Represents a GPG signature on a Commit or Tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String!)

Email used to sign this object.

\n\n\n\n\n\n\n\n\n\n\n\n

isValid (Boolean!)

True if the signature is valid and verified by GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

keyId (String)

Hex-encoded ID of the key that signed this object.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String!)

Payload for GPG signing object. Raw ODB object without the signature header.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (String!)

ASCII-armored signature header from object.

\n\n\n\n\n\n\n\n\n\n\n\n

signer (User)

GitHub user corresponding to the email signing this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (GitSignatureState!)

The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

\n\n\n\n\n\n\n\n\n\n\n\n

wasSignedByGitHub (Boolean!)

True if the signature was made with GitHub's signing key.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n HeadRefDeletedEvent\n

\n

Represents ahead_ref_deletedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

headRef (Ref)

Identifies the Ref associated with the head_ref_deleted event.

\n\n\n\n\n\n\n\n\n\n\n\n

headRefName (String!)

Identifies the name of the Ref associated with the head_ref_deleted event.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n HeadRefForcePushedEvent\n

\n

Represents ahead_ref_force_pushedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

afterCommit (Commit)

Identifies the after commit SHA for thehead_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

beforeCommit (Commit)

Identifies the before commit SHA for thehead_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n HeadRefRestoredEvent\n

\n

Represents ahead_ref_restoredevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Hovercard\n

\n

Detail needed to display a hovercard for a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

contexts ([HovercardContext!]!)

Each of the contexts for this hovercard.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IpAllowListEntry\n

\n

An IP address or range of addresses that is allowed to access an owner's resources.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allowListValue (String!)

A single IP address or range of IP addresses in CIDR notation.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isActive (Boolean!)

Whether the entry is currently active.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The name of the IP allow list entry.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (IpAllowListOwner!)

The owner of the IP allow list entry.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IpAllowListEntryConnection\n

\n

The connection type for IpAllowListEntry.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IpAllowListEntryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IpAllowListEntry])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IpAllowListEntryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IpAllowListEntry)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Issue\n

\n

An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

activeLockReason (LockReason)

Reason that the conversation was locked.

\n\n\n\n\n\n\n\n\n\n\n\n

assignees (UserConnection!)

A list of Users assigned to this object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the body of the issue.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyResourcePath (URI!)

The http path for this issue body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

Identifies the body of the issue rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyUrl (URI!)

The http URL for this issue body.

\n\n\n\n\n\n\n\n\n\n\n\n

closed (Boolean!)

true if the object is closed (definition of closed may depend on type).

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (IssueCommentConnection!)

A list of comments associated with the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueCommentOrder)

\n

Ordering options for issue comments returned from the connection.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

hovercard (Hovercard!)

The hovercard information for this issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

includeNotificationContexts (Boolean)

\n

Whether or not to include notification contexts.

\n

The default value is true.

\n
\n\n
\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isReadByViewer (Boolean)

Is this issue read by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

labels (LabelConnection)

A list of labels associated with the object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LabelOrder)

\n

Ordering options for labels returned from the connection.

\n\n
\n\n
\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

locked (Boolean!)

true if the object is locked.

\n\n\n\n\n\n\n\n\n\n\n\n

milestone (Milestone)

Identifies the milestone associated with the issue.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the issue number.

\n\n\n\n\n\n\n\n\n\n\n\n

participants (UserConnection!)

A list of Users that are participating in the Issue conversation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

projectCards (ProjectCardConnection!)

List of project cards associated with this issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

state (IssueState!)

Identifies the state of the issue.

\n\n\n\n\n\n\n\n\n\n\n\n

timeline (IssueTimelineConnection!)

A list of events, comments, commits, etc. associated with the issue.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

timeline is deprecated.

timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Allows filtering timeline events by a since timestamp.

\n\n
\n\n
\n\n\n

timelineItems (IssueTimelineItemsConnection!)

A list of events, comments, commits, etc. associated with the issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

itemTypes ([IssueTimelineItemsItemType!])

\n

Filter timeline items by type.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Filter timeline items by a since timestamp.

\n\n
\n\n
\n

skip (Int)

\n

Skips the first n elements in the list.

\n\n
\n\n
\n\n\n

title (String!)

Identifies the issue title.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueComment\n

\n

Represents a comment on an Issue.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

Returns the pull request associated with the comment, if this comment was made on a\npull request.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this issue comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this issue comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueCommentConnection\n

\n

The connection type for IssueComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IssueComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IssueComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueConnection\n

\n

The connection type for Issue.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Issue])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueContributionsByRepository\n

\n

This aggregates issues opened by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedIssueContributionConnection!)

The issue contributions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the issues were opened.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Issue)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTemplate\n

\n

A repository issue template.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

about (String)

The template purpose.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String)

The suggested issue body.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The template name.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String)

The suggested issue title.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineConnection\n

\n

The connection type for IssueTimelineItem.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueTimelineItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IssueTimelineItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IssueTimelineItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineItemsConnection\n

\n

The connection type for IssueTimelineItems.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueTimelineItemsEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

filteredCount (Int!)

Identifies the count of items after applying before and after filters.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IssueTimelineItems])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageCount (Int!)

Identifies the count of items after applying before/after filters and first/last/skip slicing.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the timeline was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineItemsEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IssueTimelineItems)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n JoinedGitHubContribution\n

\n

Represents a user signing up for a GitHub account.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Label\n

\n

A label for categorizing Issues or Milestones with a given Repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

color (String!)

Identifies the label color.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime)

Identifies the date and time when the label was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

A brief description of this label.

\n\n\n\n\n\n\n\n\n\n\n\n

isDefault (Boolean!)

Indicates whether or not this is a default label.

\n\n\n\n\n\n\n\n\n\n\n\n

issues (IssueConnection!)

A list of issues associated with this label.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

name (String!)

Identifies the label name.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests associated with this label.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this label.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this label.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime)

Identifies the date and time when the label was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this label.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LabelConnection\n

\n

The connection type for Label.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([LabelEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Label])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LabelEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Label)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LabeledEvent\n

\n

Represents alabeledevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

label (Label!)

Identifies the label associated with thelabeledevent.

\n\n\n\n\n\n\n\n\n\n\n\n

labelable (Labelable!)

Identifies the Labelable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Language\n

\n

Represents a given language found in repositories.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

color (String)

The color defined for the current language.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the current language.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LanguageConnection\n

\n

A list of languages associated with the parent.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([LanguageEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Language])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalSize (Int!)

The total size in bytes of files written in that language.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LanguageEdge\n

\n

Represents the language of a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

size (Int!)

The number of bytes of code written in the language.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n License\n

\n

A repository's open source license.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String!)

The full text of the license.

\n\n\n\n\n\n\n\n\n\n\n\n

conditions ([LicenseRule]!)

The conditions set by the license.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

A human-readable description of the license.

\n\n\n\n\n\n\n\n\n\n\n\n

featured (Boolean!)

Whether the license should be featured.

\n\n\n\n\n\n\n\n\n\n\n\n

hidden (Boolean!)

Whether the license should be displayed in license pickers.

\n\n\n\n\n\n\n\n\n\n\n\n

implementation (String)

Instructions on how to implement the license.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The lowercased SPDX ID of the license.

\n\n\n\n\n\n\n\n\n\n\n\n

limitations ([LicenseRule]!)

The limitations set by the license.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The license full name specified by https://spdx.org/licenses.

\n\n\n\n\n\n\n\n\n\n\n\n

nickname (String)

Customary short name if applicable (e.g, GPLv3).

\n\n\n\n\n\n\n\n\n\n\n\n

permissions ([LicenseRule]!)

The permissions set by the license.

\n\n\n\n\n\n\n\n\n\n\n\n

pseudoLicense (Boolean!)

Whether the license is a pseudo-license placeholder (e.g., other, no-license).

\n\n\n\n\n\n\n\n\n\n\n\n

spdxId (String)

Short identifier specified by https://spdx.org/licenses.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI)

URL to the license on https://choosealicense.com.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LicenseRule\n

\n

Describes a License's conditions, permissions, and limitations.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

description (String!)

A description of the rule.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The machine-readable rule key.

\n\n\n\n\n\n\n\n\n\n\n\n

label (String!)

The human-readable rule label.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LockedEvent\n

\n

Represents alockedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

lockReason (LockReason)

Reason that the conversation was locked (optional).

\n\n\n\n\n\n\n\n\n\n\n\n

lockable (Lockable!)

Object that was locked.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Mannequin\n

\n

A placeholder user for attribution of imported data on GitHub.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the GitHub App's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The mannequin's email on the source instance.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The username of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTML path to this resource.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The URL to this resource.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarkedAsDuplicateEvent\n

\n

Represents amarked_as_duplicateevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

canonical (IssueOrPullRequest)

The authoritative issue or pull request which has been duplicated by another.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request which has been marked as a duplicate of another.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Canonical and duplicate belong to different repositories.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceCategory\n

\n

A public description of a Marketplace category.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

description (String)

The category's description.

\n\n\n\n\n\n\n\n\n\n\n\n

howItWorks (String)

The technical description of how apps listed in this category work with GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The category's name.

\n\n\n\n\n\n\n\n\n\n\n\n

primaryListingCount (Int!)

How many Marketplace listings have this as their primary category.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this Marketplace category.

\n\n\n\n\n\n\n\n\n\n\n\n

secondaryListingCount (Int!)

How many Marketplace listings have this as their secondary category.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The short name of the category used in its URL.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this Marketplace category.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceListing\n

\n

A listing in the GitHub integration marketplace.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

app (App)

The GitHub App this listing represents.

\n\n\n\n\n\n\n\n\n\n\n\n

companyUrl (URI)

URL to the listing owner's company site.

\n\n\n\n\n\n\n\n\n\n\n\n

configurationResourcePath (URI!)

The HTTP path for configuring access to the listing's integration or OAuth app.

\n\n\n\n\n\n\n\n\n\n\n\n

configurationUrl (URI!)

The HTTP URL for configuring access to the listing's integration or OAuth app.

\n\n\n\n\n\n\n\n\n\n\n\n

documentationUrl (URI)

URL to the listing's documentation.

\n\n\n\n\n\n\n\n\n\n\n\n

extendedDescription (String)

The listing's detailed description.

\n\n\n\n\n\n\n\n\n\n\n\n

extendedDescriptionHTML (HTML!)

The listing's detailed description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescription (String!)

The listing's introductory description.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescriptionHTML (HTML!)

The listing's introductory description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

hasPublishedFreeTrialPlans (Boolean!)

Does this listing have any plans with a free trial?.

\n\n\n\n\n\n\n\n\n\n\n\n

hasTermsOfService (Boolean!)

Does this listing have a terms of service link?.

\n\n\n\n\n\n\n\n\n\n\n\n

howItWorks (String)

A technical description of how this app works with GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

howItWorksHTML (HTML!)

The listing's technical description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

installationUrl (URI)

URL to install the product to the viewer's account or organization.

\n\n\n\n\n\n\n\n\n\n\n\n

installedForViewer (Boolean!)

Whether this listing's app has been installed for the current viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

isArchived (Boolean!)

Whether this listing has been removed from the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isDraft (Boolean!)

Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isPaid (Boolean!)

Whether the product this listing represents is available as part of a paid plan.

\n\n\n\n\n\n\n\n\n\n\n\n

isPublic (Boolean!)

Whether this listing has been approved for display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isRejected (Boolean!)

Whether this listing has been rejected by GitHub for display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnverified (Boolean!)

Whether this listing has been approved for unverified display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnverifiedPending (Boolean!)

Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerificationPendingFromDraft (Boolean!)

Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerificationPendingFromUnverified (Boolean!)

Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerified (Boolean!)

Whether this listing has been approved for verified display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

logoBackgroundColor (String!)

The hex color code, without the leading '#', for the logo background.

\n\n\n\n\n\n\n\n\n\n\n\n

logoUrl (URI)

URL for the listing's logo image.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size in pixels of the resulting square image.

\n

The default value is 400.

\n
\n\n
\n\n\n

name (String!)

The listing's full name.

\n\n\n\n\n\n\n\n\n\n\n\n

normalizedShortDescription (String!)

The listing's very short description without a trailing period or ampersands.

\n\n\n\n\n\n\n\n\n\n\n\n

pricingUrl (URI)

URL to the listing's detailed pricing.

\n\n\n\n\n\n\n\n\n\n\n\n

primaryCategory (MarketplaceCategory!)

The category that best describes the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

privacyPolicyUrl (URI!)

URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for the Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

screenshotUrls ([String]!)

The URLs for the listing's screenshots.

\n\n\n\n\n\n\n\n\n\n\n\n

secondaryCategory (MarketplaceCategory)

An alternate category that describes the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescription (String!)

The listing's very short description.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The short name of the listing used in its URL.

\n\n\n\n\n\n\n\n\n\n\n\n

statusUrl (URI)

URL to the listing's status page.

\n\n\n\n\n\n\n\n\n\n\n\n

supportEmail (String)

An email address for support for this listing's app.

\n\n\n\n\n\n\n\n\n\n\n\n

supportUrl (URI!)

Either a URL or an email address for support for this listing's app, may\nreturn an empty string for listings that do not require a support URL.

\n\n\n\n\n\n\n\n\n\n\n\n

termsOfServiceUrl (URI)

URL to the listing's terms of service.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for the Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAddPlans (Boolean!)

Can the current viewer add plans for this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanApprove (Boolean!)

Can the current viewer approve this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanDelist (Boolean!)

Can the current viewer delist this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanEdit (Boolean!)

Can the current viewer edit this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanEditCategories (Boolean!)

Can the current viewer edit the primary and secondary category of this\nMarketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanEditPlans (Boolean!)

Can the current viewer edit the plans for this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanRedraft (Boolean!)

Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReject (Boolean!)

Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanRequestApproval (Boolean!)

Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasPurchased (Boolean!)

Indicates whether the current user has an active subscription to this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasPurchasedForAllOrganizations (Boolean!)

Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsListingAdmin (Boolean!)

Does the current viewer role allow them to administer this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceListingConnection\n

\n

Look up Marketplace Listings.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([MarketplaceListingEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([MarketplaceListing])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceListingEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (MarketplaceListing)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MembersCanDeleteReposClearAuditEntry\n

\n

Audit log entry for a members_can_delete_repos.clear event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MembersCanDeleteReposDisableAuditEntry\n

\n

Audit log entry for a members_can_delete_repos.disable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MembersCanDeleteReposEnableAuditEntry\n

\n

Audit log entry for a members_can_delete_repos.enable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MentionedEvent\n

\n

Represents amentionedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MergedEvent\n

\n

Represents amergedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with the merge event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeRef (Ref)

Identifies the Ref associated with the merge event.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeRefName (String!)

Identifies the name of the Ref associated with the merge event.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this merged event.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this merged event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Milestone\n

\n

Represents a Milestone object on a given repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

closed (Boolean!)

true if the object is closed (definition of closed may depend on type).

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

Identifies the actor who created the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

Identifies the description of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

dueOn (DateTime)

Identifies the due date of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

issues (IssueConnection!)

A list of issues associated with the milestone.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

number (Int!)

Identifies the number of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

progressPercentage (Float!)

Indentifies the percentage complete for the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests associated with the milestone.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

state (MilestoneState!)

Identifies the state of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

Identifies the title of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this milestone.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MilestoneConnection\n

\n

The connection type for Milestone.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([MilestoneEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Milestone])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MilestoneEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Milestone)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MilestonedEvent\n

\n

Represents amilestonedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

milestoneTitle (String!)

Identifies the milestone title associated with themilestonedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (MilestoneItem!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MovedColumnsInProjectEvent\n

\n

Represents amoved_columns_in_projectevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

previousProjectColumnName (String!)

Column name the issue or pull request was moved from.

\n\n\n\n\n
\n

Preview notice

\n

previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

project (Project)

Project referenced by event.

\n\n\n\n\n
\n

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

Project card referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectColumnName (String!)

Column name the issue or pull request was moved to.

\n\n\n\n\n
\n

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OauthApplicationCreateAuditEntry\n

\n

Audit log entry for a oauth_application.create event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

applicationUrl (URI)

The application URL of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

callbackUrl (URI)

The callback URL of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

rateLimit (Int)

The rate limit of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

state (OauthApplicationCreateAuditEntryState)

The state of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgAddBillingManagerAuditEntry\n

\n

Audit log entry for a org.add_billing_manager.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

invitationEmail (String)

The email address used to invite a billing manager for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgAddMemberAuditEntry\n

\n

Audit log entry for a org.add_member.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (OrgAddMemberAuditEntryPermission)

The permission level of the member added to the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgBlockUserAuditEntry\n

\n

Audit log entry for a org.block_user.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUser (User)

The blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserName (String)

The username of the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserResourcePath (URI)

The HTTP path for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserUrl (URI)

The HTTP URL for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgConfigDisableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a org.config.disable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgConfigEnableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a org.config.enable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgCreateAuditEntry\n

\n

Audit log entry for a org.create event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

billingPlan (OrgCreateAuditEntryBillingPlan)

The billing plan for the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgDisableOauthAppRestrictionsAuditEntry\n

\n

Audit log entry for a org.disable_oauth_app_restrictions event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgDisableSamlAuditEntry\n

\n

Audit log entry for a org.disable_saml event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

digestMethodUrl (URI)

The SAML provider's digest algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

issuerUrl (URI)

The SAML provider's issuer URL.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethodUrl (URI)

The SAML provider's signature algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

singleSignOnUrl (URI)

The SAML provider's single sign-on URL.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgDisableTwoFactorRequirementAuditEntry\n

\n

Audit log entry for a org.disable_two_factor_requirement event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgEnableOauthAppRestrictionsAuditEntry\n

\n

Audit log entry for a org.enable_oauth_app_restrictions event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgEnableSamlAuditEntry\n

\n

Audit log entry for a org.enable_saml event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

digestMethodUrl (URI)

The SAML provider's digest algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

issuerUrl (URI)

The SAML provider's issuer URL.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethodUrl (URI)

The SAML provider's signature algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

singleSignOnUrl (URI)

The SAML provider's single sign-on URL.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgEnableTwoFactorRequirementAuditEntry\n

\n

Audit log entry for a org.enable_two_factor_requirement event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgInviteMemberAuditEntry\n

\n

Audit log entry for a org.invite_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email address of the organization invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationInvitation (OrganizationInvitation)

The organization invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgInviteToBusinessAuditEntry\n

\n

Audit log entry for a org.invite_to_business event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgOauthAppAccessApprovedAuditEntry\n

\n

Audit log entry for a org.oauth_app_access_approved event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgOauthAppAccessDeniedAuditEntry\n

\n

Audit log entry for a org.oauth_app_access_denied event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgOauthAppAccessRequestedAuditEntry\n

\n

Audit log entry for a org.oauth_app_access_requested event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRemoveBillingManagerAuditEntry\n

\n

Audit log entry for a org.remove_billing_manager event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

reason (OrgRemoveBillingManagerAuditEntryReason)

The reason for the billing manager being removed.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRemoveMemberAuditEntry\n

\n

Audit log entry for a org.remove_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

The types of membership the member has with the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

reason (OrgRemoveMemberAuditEntryReason)

The reason for the member being removed.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRemoveOutsideCollaboratorAuditEntry\n

\n

Audit log entry for a org.remove_outside_collaborator event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

The types of membership the outside collaborator has with the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

The reason for the outside collaborator being removed from the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberAuditEntry\n

\n

Audit log entry for a org.restore_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredCustomEmailRoutingsCount (Int)

The number of custom email routings for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredIssueAssignmentsCount (Int)

The number of issue assignemnts for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

Restored organization membership objects.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredMembershipsCount (Int)

The number of restored memberships.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredRepositoriesCount (Int)

The number of repositories of the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredRepositoryStarsCount (Int)

The number of starred repositories for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredRepositoryWatchesCount (Int)

The number of watched repositories for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberMembershipOrganizationAuditEntryData\n

\n

Metadata for an organization membership for org.restore_member actions.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberMembershipRepositoryAuditEntryData\n

\n

Metadata for a repository membership for org.restore_member actions.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberMembershipTeamAuditEntryData\n

\n

Metadata for a team membership for org.restore_member actions.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUnblockUserAuditEntry\n

\n

Audit log entry for a org.unblock_user.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUser (User)

The user being unblocked by the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserName (String)

The username of the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserResourcePath (URI)

The HTTP path for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserUrl (URI)

The HTTP URL for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateDefaultRepositoryPermissionAuditEntry\n

\n

Audit log entry for a org.update_default_repository_permission.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

The new default repository permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

The former default repository permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateMemberAuditEntry\n

\n

Audit log entry for a org.update_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (OrgUpdateMemberAuditEntryPermission)

The new member permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permissionWas (OrgUpdateMemberAuditEntryPermission)

The former member permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateMemberRepositoryCreationPermissionAuditEntry\n

\n

Audit log entry for a org.update_member_repository_creation_permission event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

canCreateRepositories (Boolean)

Can members create repositories in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

The permission for visibility level of repositories for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateMemberRepositoryInvitationPermissionAuditEntry\n

\n

Audit log entry for a org.update_member_repository_invitation_permission event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

canInviteOutsideCollaboratorsToRepositories (Boolean)

Can outside collaborators be invited to repositories in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Organization\n

\n

An account on GitHub, with one or more owners, that has repositories, members and teams.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

anyPinnableItems (Boolean!)

Determine if this repository owner has any items that can be pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

type (PinnableItemType)

\n

Filter to only a particular kind of pinnable item.

\n\n
\n\n
\n\n\n

auditLog (OrganizationAuditEntryConnection!)

Audit log entries of the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (AuditLogOrder)

\n

Ordering options for the returned audit log entries.

\n\n
\n\n
\n

query (String)

\n

The query string to filter audit entries.

\n\n
\n\n
\n\n\n

avatarUrl (URI!)

A URL pointing to the organization's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The organization's public profile description.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (String)

The organization's public profile description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The organization's public email.

\n\n\n\n\n\n\n\n\n\n\n\n

hasSponsorsListing (Boolean!)

True if this user/organization has a GitHub Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n\n

ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

The setting value for whether the organization has an IP allow list enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

ipAllowListEntries (IpAllowListEntryConnection!)

The IP addresses that are allowed to access resources owned by the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IpAllowListEntryOrder)

\n

Ordering options for IP allow list entries returned.

\n\n
\n\n
\n\n\n

isSponsoringViewer (Boolean!)

True if the viewer is sponsored by this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerified (Boolean!)

Whether the organization has verified its profile email and website, always false on Enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

itemShowcase (ProfileItemShowcase!)

Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

\n\n\n\n\n\n\n\n\n\n\n\n

location (String)

The organization's public profile location.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The organization's login name.

\n\n\n\n\n\n\n\n\n\n\n\n

memberStatuses (UserStatusConnection!)

Get the status messages members of this entity have set that are either public or visible only to the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (UserStatusOrder)

\n

Ordering options for user statuses returned from the connection.

\n\n
\n\n
\n\n\n

membersWithRole (OrganizationMemberConnection!)

A list of users who are members of this organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

name (String)

The organization's public profile name.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamResourcePath (URI!)

The HTTP path creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamUrl (URI!)

The HTTP URL creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationBillingEmail (String)

The billing email for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

packages (PackageConnection!)

A list of packages under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

names ([String])

\n

Find packages by their names.

\n\n
\n\n
\n

orderBy (PackageOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n

packageType (PackageType)

\n

Filter registry package by type.

\n\n
\n\n
\n

repositoryId (ID)

\n

Find packages in a repository by ID.

\n\n
\n\n
\n\n\n

pendingMembers (UserConnection!)

A list of users who have been invited to join this organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

pinnableItems (PinnableItemConnection!)

A list of repositories and gists this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinnable items that are returned.

\n\n
\n\n
\n\n\n

pinnedItems (PinnableItemConnection!)

A list of repositories and gists this profile owner has pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinned items that are returned.

\n\n
\n\n
\n\n\n

pinnedItemsRemaining (Int!)

Returns how many more items this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Find project by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The project number to find.

\n\n
\n\n
\n\n\n

projects (ProjectConnection!)

A list of projects under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ProjectOrder)

\n

Ordering options for projects returned from the connection.

\n\n
\n\n
\n

search (String)

\n

Query to search projects by, currently only searching by name.

\n\n
\n\n
\n

states ([ProjectState!])

\n

A list of states to filter the projects by.

\n\n
\n\n
\n\n\n

projectsResourcePath (URI!)

The HTTP path listing organization's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

projectsUrl (URI!)

The HTTP URL listing organization's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (RepositoryConnection!)

A list of repositories that the user owns.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isFork (Boolean)

\n

If non-null, filters repositories according to whether they are forks of another repository.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

repository (Repository)

Find Repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

Name of Repository to find.

\n\n
\n\n
\n\n\n

requiresTwoFactorAuthentication (Boolean)

When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

samlIdentityProvider (OrganizationIdentityProvider)

The Organization's SAML identity providers.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorsListing (SponsorsListing)

The GitHub Sponsors listing for this user or organization.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorshipsAsMaintainer (SponsorshipConnection!)

This object's sponsorships as the maintainer.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includePrivate (Boolean)

\n

Whether or not to include private sponsorships in the result set.

\n

The default value is false.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

sponsorshipsAsSponsor (SponsorshipConnection!)

This object's sponsorships as the sponsor.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

team (Team)

Find an organization's team by its slug.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

slug (String!)

\n

The name or slug of the team to find.

\n\n
\n\n
\n\n\n

teams (TeamConnection!)

A list of teams in this organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

ldapMapped (Boolean)

\n

If true, filters teams that are mapped to an LDAP Group (Enterprise only).

\n\n
\n\n
\n

orderBy (TeamOrder)

\n

Ordering options for teams returned from the connection.

\n\n
\n\n
\n

privacy (TeamPrivacy)

\n

If non-null, filters teams according to privacy.

\n\n
\n\n
\n

query (String)

\n

If non-null, filters teams with query on team name and team slug.

\n\n
\n\n
\n

role (TeamRole)

\n

If non-null, filters teams according to whether the viewer is an admin or member on team.

\n\n
\n\n
\n

rootTeamsOnly (Boolean)

\n

If true, restrict to only root teams.

\n

The default value is false.

\n
\n\n
\n

userLogins ([String!])

\n

User logins to filter by.

\n\n
\n\n
\n\n\n

teamsResourcePath (URI!)

The HTTP path listing organization's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsUrl (URI!)

The HTTP URL listing organization's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

twitterUsername (String)

The organization's Twitter username.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAdminister (Boolean!)

Organization is adminable by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanChangePinnedItems (Boolean!)

Can the viewer pin repositories and gists to the profile?.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateProjects (Boolean!)

Can the current viewer create new projects on this owner.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateRepositories (Boolean!)

Viewer can create repositories on this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateTeams (Boolean!)

Viewer can create teams on this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSponsor (Boolean!)

Whether or not the viewer is able to sponsor this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsAMember (Boolean!)

Viewer is an active member of this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsSponsoring (Boolean!)

True if the viewer is sponsoring this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

websiteUrl (URI)

The organization's public profile URL.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationAuditEntryConnection\n

\n

The connection type for OrganizationAuditEntry.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationAuditEntryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([OrganizationAuditEntry])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationAuditEntryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (OrganizationAuditEntry)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationConnection\n

\n

The connection type for Organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Organization])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Organization)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationIdentityProvider\n

\n

An Identity Provider configured to provision SAML and SCIM identities for Organizations.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

digestMethod (URI)

The digest algorithm used to sign SAML requests for the Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n\n

externalIdentities (ExternalIdentityConnection!)

External Identities provisioned by this Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

idpCertificate (X509Certificate)

The x509 certificate used by the Identity Provder to sign assertions and responses.

\n\n\n\n\n\n\n\n\n\n\n\n

issuer (String)

The Issuer Entity ID for the SAML Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

Organization this Identity Provider belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethod (URI)

The signature algorithm used to sign SAML requests for the Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n\n

ssoUrl (URI)

The URL endpoint for the Identity Provider's SAML SSO.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationInvitation\n

\n

An Invitation for a user to an organization.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email address of the user invited to the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

invitationType (OrganizationInvitationType!)

The type of invitation that was sent (e.g. email, user).

\n\n\n\n\n\n\n\n\n\n\n\n

invitee (User)

The user who was invited to the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

inviter (User!)

The user who created the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization!)

The organization the invite is for.

\n\n\n\n\n\n\n\n\n\n\n\n

role (OrganizationInvitationRole!)

The user's pending role in the organization (e.g. member, owner).

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationInvitationConnection\n

\n

The connection type for OrganizationInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([OrganizationInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationInvitationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (OrganizationInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationMemberConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationMemberEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationMemberEdge\n

\n

Represents a user within an organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

hasTwoFactorEnabled (Boolean)

Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

role (OrganizationMemberRole)

The role this user has in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationTeamsHovercardContext\n

\n

An organization teams hovercard context.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

relevantTeams (TeamConnection!)

Teams in this organization the user is a member of that are relevant.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

teamsResourcePath (URI!)

The path for the full team list for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsUrl (URI!)

The URL for the full team list for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

totalTeamCount (Int!)

The total number of teams the user is on in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationsHovercardContext\n

\n

An organization list hovercard context.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

relevantOrganizations (OrganizationConnection!)

Organizations this user is a member of that are relevant.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

totalOrganizationCount (Int!)

The total number of organizations this user is in.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Package\n

\n

Information for an uploaded package.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

latestVersion (PackageVersion)

Find the latest version for the package.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Identifies the name of the package.

\n\n\n\n\n\n\n\n\n\n\n\n

packageType (PackageType!)

Identifies the type of the package.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository this package belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

statistics (PackageStatistics)

Statistics about package activity.

\n\n\n\n\n\n\n\n\n\n\n\n

version (PackageVersion)

Find package version by version string.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

version (String!)

\n

The package version.

\n\n
\n\n
\n\n\n

versions (PackageVersionConnection!)

list of versions for this package.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (PackageVersionOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageConnection\n

\n

The connection type for Package.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PackageEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Package])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Package)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageFile\n

\n

A file in a package version.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

md5 (String)

MD5 hash of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Name of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

packageVersion (PackageVersion)

The package version this file belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

sha1 (String)

SHA1 hash of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

sha256 (String)

SHA256 hash of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

size (Int)

Size of the file in bytes.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI)

URL to download the asset.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageFileConnection\n

\n

The connection type for PackageFile.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PackageFileEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PackageFile])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageFileEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PackageFile)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageStatistics\n

\n

Represents a object that contains package activity statistics such as downloads.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

downloadsTotalCount (Int!)

Number of times the package was downloaded since it was created.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageTag\n

\n

A version tag contains the mapping between a tag name and a version.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

name (String!)

Identifies the tag name of the version.

\n\n\n\n\n\n\n\n\n\n\n\n

version (PackageVersion)

Version that the tag is associated with.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersion\n

\n

Information about a specific package version.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

files (PackageFileConnection!)

List of files associated with this package version.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (PackageFileOrder)

\n

Ordering of the returned package files.

\n\n
\n\n
\n\n\n

package (Package)

The package associated with this version.

\n\n\n\n\n\n\n\n\n\n\n\n

platform (String)

The platform this version was built for.

\n\n\n\n\n\n\n\n\n\n\n\n

preRelease (Boolean!)

Whether or not this version is a pre-release.

\n\n\n\n\n\n\n\n\n\n\n\n

readme (String)

The README of this package version.

\n\n\n\n\n\n\n\n\n\n\n\n

release (Release)

The release associated with this package version.

\n\n\n\n\n\n\n\n\n\n\n\n

statistics (PackageVersionStatistics)

Statistics about package activity.

\n\n\n\n\n\n\n\n\n\n\n\n

summary (String)

The package version summary.

\n\n\n\n\n\n\n\n\n\n\n\n

version (String!)

The version string.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersionConnection\n

\n

The connection type for PackageVersion.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PackageVersionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PackageVersion])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PackageVersion)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersionStatistics\n

\n

Represents a object that contains package version activity statistics such as downloads.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

downloadsTotalCount (Int!)

Number of times the package was downloaded since it was created.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PageInfo\n

\n

Information about pagination in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

endCursor (String)

When paginating forwards, the cursor to continue.

\n\n\n\n\n\n\n\n\n\n\n\n

hasNextPage (Boolean!)

When paginating forwards, are there more items?.

\n\n\n\n\n\n\n\n\n\n\n\n

hasPreviousPage (Boolean!)

When paginating backwards, are there more items?.

\n\n\n\n\n\n\n\n\n\n\n\n

startCursor (String)

When paginating backwards, the cursor to continue.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PermissionSource\n

\n

A level of permission and source for a user's access to a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

organization (Organization!)

The organization the repository belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (DefaultRepositoryPermissionField!)

The level of access this source has granted to the user.

\n\n\n\n\n\n\n\n\n\n\n\n

source (PermissionGranter!)

The source of this permission.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnableItemConnection\n

\n

The connection type for PinnableItem.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PinnableItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PinnableItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnableItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PinnableItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedEvent\n

\n

Represents apinnedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedIssue\n

\n

A Pinned Issue is a issue pinned to a repository's index page.

\n
\n\n
\n \n
\n

Preview notice

\n

PinnedIssue is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

The issue that was pinned.

\n\n\n\n\n\n\n\n\n\n\n\n

pinnedBy (Actor!)

The actor that pinned this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository that this issue was pinned to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedIssueConnection\n

\n

The connection type for PinnedIssue.

\n
\n\n
\n \n
\n

Preview notice

\n

PinnedIssueConnection is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PinnedIssueEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PinnedIssue])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedIssueEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n
\n

Preview notice

\n

PinnedIssueEdge is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PinnedIssue)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PrivateRepositoryForkingDisableAuditEntry\n

\n

Audit log entry for a private_repository_forking.disable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PrivateRepositoryForkingEnableAuditEntry\n

\n

Audit log entry for a private_repository_forking.enable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProfileItemShowcase\n

\n

A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

hasPinnedItems (Boolean!)

Whether or not the owner has pinned any repositories or gists.

\n\n\n\n\n\n\n\n\n\n\n\n

items (PinnableItemConnection!)

The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Project\n

\n

Projects manage issues, pull requests and notes within a project owner.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String)

The project's description body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The projects description body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

closed (Boolean!)

true if the object is closed (definition of closed may depend on type).

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

columns (ProjectColumnConnection!)

List of columns in the project.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

The actor who originally created the project.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The project's name.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

The project's number.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (ProjectOwner!)

The project's owner. Currently limited to repositories, organizations, and users.

\n\n\n\n\n\n\n\n\n\n\n\n

pendingCards (ProjectCardConnection!)

List of pending cards in this project.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

progress (ProjectProgress!)

Project progress details.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this project.

\n\n\n\n\n\n\n\n\n\n\n\n

state (ProjectState!)

Whether the project is open or closed.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this project.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectCard\n

\n

A card in a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

column (ProjectColumn)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

content (ProjectCardItem)

The card content item.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

The actor who created this card.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

isArchived (Boolean!)

Whether the card is archived.

\n\n\n\n\n\n\n\n\n\n\n\n

note (String)

The card note.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project!)

The project that contains this card.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this card.

\n\n\n\n\n\n\n\n\n\n\n\n

state (ProjectCardState)

The state of ProjectCard.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this card.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectCardConnection\n

\n

The connection type for ProjectCard.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ProjectCardEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ProjectCard])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectCardEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ProjectCard)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectColumn\n

\n

A column inside a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cards (ProjectCardConnection!)

List of cards in the column.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The project column's name.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project!)

The project that contains this column.

\n\n\n\n\n\n\n\n\n\n\n\n

purpose (ProjectColumnPurpose)

The semantic purpose of the column.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this project column.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this project column.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectColumnConnection\n

\n

The connection type for ProjectColumn.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ProjectColumnEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ProjectColumn])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectColumnEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ProjectColumn)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectConnection\n

\n

A list of projects associated with the owner.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ProjectEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Project])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Project)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectProgress\n

\n

Project progress stats.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

doneCount (Int!)

The number of done cards.

\n\n\n\n\n\n\n\n\n\n\n\n

donePercentage (Float!)

The percentage of done cards.

\n\n\n\n\n\n\n\n\n\n\n\n

enabled (Boolean!)

Whether progress tracking is enabled and cards with purpose exist for this project.

\n\n\n\n\n\n\n\n\n\n\n\n

inProgressCount (Int!)

The number of in-progress cards.

\n\n\n\n\n\n\n\n\n\n\n\n

inProgressPercentage (Float!)

The percentage of in-progress cards.

\n\n\n\n\n\n\n\n\n\n\n\n

todoCount (Int!)

The number of to do cards.

\n\n\n\n\n\n\n\n\n\n\n\n

todoPercentage (Float!)

The percentage of to do cards.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PublicKey\n

\n

A user's public key.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

accessedAt (DateTime)

The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

fingerprint (String!)

The fingerprint for this PublicKey.

\n\n\n\n\n\n\n\n\n\n\n\n

isReadOnly (Boolean)

Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The public key string.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime)

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.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PublicKeyConnection\n

\n

The connection type for PublicKey.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PublicKeyEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PublicKey])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PublicKeyEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PublicKey)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequest\n

\n

A repository pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

activeLockReason (LockReason)

Reason that the conversation was locked.

\n\n\n\n\n\n\n\n\n\n\n\n

additions (Int!)

The number of additions in this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

assignees (UserConnection!)

A list of Users assigned to this object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRef (Ref)

Identifies the base Ref associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRefName (String!)

Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRefOid (GitObjectID!)

Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRepository (Repository)

The repository associated with this pull request's base Ref.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

canBeRebased (Boolean!)

Whether or not the pull request is rebaseable.

\n\n\n\n\n
\n

Preview notice

\n

canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

changedFiles (Int!)

The number of changed files in this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

checksResourcePath (URI!)

The HTTP path for the checks of this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

checksUrl (URI!)

The HTTP URL for the checks of this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

closed (Boolean!)

true if the pull request is closed.

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (IssueCommentConnection!)

A list of comments associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueCommentOrder)

\n

Ordering options for issue comments returned from the connection.

\n\n
\n\n
\n\n\n

commits (PullRequestCommitConnection!)

A list of commits present in this pull request's head branch not present in the base branch.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

deletions (Int!)

The number of deletions in this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited this pull request's body.

\n\n\n\n\n\n\n\n\n\n\n\n

files (PullRequestChangedFileConnection)

Lists the files changed within this pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

headRef (Ref)

Identifies the head Ref associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

headRefName (String!)

Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

headRefOid (GitObjectID!)

Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

headRepository (Repository)

The repository associated with this pull request's head Ref.

\n\n\n\n\n\n\n\n\n\n\n\n

headRepositoryOwner (RepositoryOwner)

The owner of the repository associated with this pull request's head Ref.

\n\n\n\n\n\n\n\n\n\n\n\n

hovercard (Hovercard!)

The hovercard information for this issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

includeNotificationContexts (Boolean)

\n

Whether or not to include notification contexts.

\n

The default value is true.

\n
\n\n
\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

The head and base repositories are different.

\n\n\n\n\n\n\n\n\n\n\n\n

isDraft (Boolean!)

Identifies if the pull request is a draft.

\n\n\n\n\n\n\n\n\n\n\n\n

isReadByViewer (Boolean)

Is this pull request read by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

labels (LabelConnection)

A list of labels associated with the object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LabelOrder)

\n

Ordering options for labels returned from the connection.

\n\n
\n\n
\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

latestOpinionatedReviews (PullRequestReviewConnection)

A list of latest reviews per user associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

writersOnly (Boolean)

\n

Only return reviews from user who have write access to the repository.

\n

The default value is false.

\n
\n\n
\n\n\n

latestReviews (PullRequestReviewConnection)

A list of latest reviews per user associated with the pull request that are not also pending review.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

locked (Boolean!)

true if the pull request is locked.

\n\n\n\n\n\n\n\n\n\n\n\n

maintainerCanModify (Boolean!)

Indicates whether maintainers can modify the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The commit that was created when this pull request was merged.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeStateStatus (MergeStateStatus!)

Detailed information about the current pull request merge state status.

\n\n\n\n\n
\n

Preview notice

\n

mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

mergeable (MergeableState!)

Whether or not the pull request can be merged based on the existence of merge conflicts.

\n\n\n\n\n\n\n\n\n\n\n\n

merged (Boolean!)

Whether or not the pull request was merged.

\n\n\n\n\n\n\n\n\n\n\n\n

mergedAt (DateTime)

The date and time that the pull request was merged.

\n\n\n\n\n\n\n\n\n\n\n\n

mergedBy (Actor)

The actor who merged the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

milestone (Milestone)

Identifies the milestone associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the pull request number.

\n\n\n\n\n\n\n\n\n\n\n\n

participants (UserConnection!)

A list of Users that are participating in the Pull Request conversation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

permalink (URI!)

The permalink to the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

potentialMergeCommit (Commit)

The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

projectCards (ProjectCardConnection!)

List of project cards associated with this pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

revertResourcePath (URI!)

The HTTP path for reverting this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

revertUrl (URI!)

The HTTP URL for reverting this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewDecision (PullRequestReviewDecision)

The current status of this pull request with respect to code review.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewRequests (ReviewRequestConnection)

A list of review requests associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

reviewThreads (PullRequestReviewThreadConnection!)

The list of all review threads for this pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

reviews (PullRequestReviewConnection)

A list of reviews associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

author (String)

\n

Filter by author of the review.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

states ([PullRequestReviewState!])

\n

A list of states to filter the reviews.

\n\n
\n\n
\n\n\n

state (PullRequestState!)

Identifies the state of the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

suggestedReviewers ([SuggestedReviewer]!)

A list of reviewer suggestions based on commit history and past review comments.

\n\n\n\n\n\n\n\n\n\n\n\n

timeline (PullRequestTimelineConnection!)

A list of events, comments, commits, etc. associated with the pull request.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

timeline is deprecated.

timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Allows filtering timeline events by a since timestamp.

\n\n
\n\n
\n\n\n

timelineItems (PullRequestTimelineItemsConnection!)

A list of events, comments, commits, etc. associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

itemTypes ([PullRequestTimelineItemsItemType!])

\n

Filter timeline items by type.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Filter timeline items by a since timestamp.

\n\n
\n\n
\n

skip (Int)

\n

Skips the first n elements in the list.

\n\n
\n\n
\n\n\n

title (String!)

Identifies the pull request title.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanApplySuggestion (Boolean!)

Whether or not the viewer can apply suggestion.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanDeleteHeadRef (Boolean!)

Check if the viewer can restore the deleted head ref.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerMergeBodyText (String!)

The merge body text for the viewer and method.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

mergeType (PullRequestMergeMethod)

\n

The merge method for the message.

\n\n
\n\n
\n\n\n

viewerMergeHeadlineText (String!)

The merge headline text for the viewer and method.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

mergeType (PullRequestMergeMethod)

\n

The merge method for the message.

\n\n
\n\n
\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestChangedFile\n

\n

A file changed in a pull request.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

additions (Int!)

The number of additions to the file.

\n\n\n\n\n\n\n\n\n\n\n\n

deletions (Int!)

The number of deletions to the file.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerViewedState (FileViewedState!)

The state of the file for the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestChangedFileConnection\n

\n

The connection type for PullRequestChangedFile.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestChangedFileEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestChangedFile])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestChangedFileEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestChangedFile)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommit\n

\n

Represents a Git commit part of a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commit (Commit!)

The Git commit object.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request this commit belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this pull request commit.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this pull request commit.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommitCommentThread\n

\n

Represents a commit comment thread part of a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (CommitCommentConnection!)

The comments that exist in this thread.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit!)

The commit the comments were made on.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String)

The file the comments were made on.

\n\n\n\n\n\n\n\n\n\n\n\n

position (Int)

The position in the diff for the commit that the comment was made on.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request this commit comment thread belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommitConnection\n

\n

The connection type for PullRequestCommit.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestCommitEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestCommit])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommitEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestCommit)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestConnection\n

\n

The connection type for PullRequest.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequest])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestContributionsByRepository\n

\n

This aggregates pull requests opened by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedPullRequestContributionConnection!)

The pull request contributions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the pull requests were opened.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequest)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReview\n

\n

A review object for a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorCanPushToRepository (Boolean!)

Indicates whether the author of this review has push access to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the pull request review body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body of this review rendered as plain text.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (PullRequestReviewCommentConnection!)

A list of review comments for the current pull request review.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit)

Identifies the commit associated with this pull request review.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

onBehalfOf (TeamConnection!)

A list of teams that this review was made on behalf of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

Identifies the pull request associated with this pull request review.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path permalink for this PullRequestReview.

\n\n\n\n\n\n\n\n\n\n\n\n

state (PullRequestReviewState!)

Identifies the current state of the pull request review.

\n\n\n\n\n\n\n\n\n\n\n\n

submittedAt (DateTime)

Identifies when the Pull Request Review was submitted.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL permalink for this PullRequestReview.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewComment\n

\n

A review comment associated with a given repository pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The comment body of this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The comment body of this review comment rendered as plain text.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies when the comment was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

diffHunk (String!)

The diff hunk to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

draftedAt (DateTime!)

Identifies when the comment was created in a draft state.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

originalCommit (Commit)

Identifies the original commit associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

originalPosition (Int!)

The original line index in the diff to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

outdated (Boolean!)

Identifies when the comment body is outdated.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

position (Int)

The line index in the diff to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request associated with this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review associated with this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

replyTo (PullRequestReviewComment)

The comment this is a reply to.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path permalink for this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

state (PullRequestReviewCommentState!)

Identifies the state of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies when the comment was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL permalink for this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewCommentConnection\n

\n

The connection type for PullRequestReviewComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestReviewCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestReviewComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestReviewComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewConnection\n

\n

The connection type for PullRequestReview.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestReviewEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestReview])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewContributionsByRepository\n

\n

This aggregates pull request reviews made by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedPullRequestReviewContributionConnection!)

The pull request review contributions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the pull request reviews were made.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestReview)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewThread\n

\n

A threaded list of comments for a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (PullRequestReviewCommentConnection!)

A list of pull request comments associated with the thread.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

skip (Int)

\n

Skips the first n elements in the list.

\n\n
\n\n
\n\n\n

diffSide (DiffSide!)

The side of the diff on which this thread was placed.

\n\n\n\n\n\n\n\n\n\n\n\n

isCollapsed (Boolean!)

Whether or not the thread has been collapsed (outdated or resolved).

\n\n\n\n\n\n\n\n\n\n\n\n

isOutdated (Boolean!)

Indicates whether this thread was outdated by newer changes.

\n\n\n\n\n\n\n\n\n\n\n\n

isResolved (Boolean!)

Whether this thread has been resolved.

\n\n\n\n\n\n\n\n\n\n\n\n

line (Int)

The line in the file to which this thread refers.

\n\n\n\n\n\n\n\n\n\n\n\n

originalLine (Int)

The original line in the file to which this thread refers.

\n\n\n\n\n\n\n\n\n\n\n\n

originalStartLine (Int)

The original start line in the file to which this thread refers (multi-line only).

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

Identifies the file path of this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

Identifies the pull request associated with this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

Identifies the repository associated with this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

resolvedBy (User)

The user who resolved this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

startDiffSide (DiffSide)

The side of the diff that the first line of the thread starts on (multi-line only).

\n\n\n\n\n\n\n\n\n\n\n\n

startLine (Int)

The start line in the file to which this thread refers (multi-line only).

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReply (Boolean!)

Indicates whether the current viewer can reply to this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanResolve (Boolean!)

Whether or not the viewer can resolve this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUnresolve (Boolean!)

Whether or not the viewer can unresolve this thread.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewThreadConnection\n

\n

Review comment threads for a pull request review.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestReviewThreadEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestReviewThread])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewThreadEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestReviewThread)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestRevisionMarker\n

\n

Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

lastSeenCommit (Commit!)

The last commit the viewer has seen.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request to which the marker belongs.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineConnection\n

\n

The connection type for PullRequestTimelineItem.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestTimelineItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestTimelineItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestTimelineItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineItemsConnection\n

\n

The connection type for PullRequestTimelineItems.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestTimelineItemsEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

filteredCount (Int!)

Identifies the count of items after applying before and after filters.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestTimelineItems])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageCount (Int!)

Identifies the count of items after applying before/after filters and first/last/skip slicing.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the timeline was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineItemsEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestTimelineItems)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Push\n

\n

A Git push.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

nextSha (GitObjectID)

The SHA after the push.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI!)

The permalink for this push.

\n\n\n\n\n\n\n\n\n\n\n\n

previousSha (GitObjectID)

The SHA before the push.

\n\n\n\n\n\n\n\n\n\n\n\n

pusher (User!)

The user who pushed.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository that was pushed to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PushAllowance\n

\n

A team, user or app who has the ability to push to a protected branch.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (PushAllowanceActor)

The actor that can push.

\n\n\n\n\n\n\n\n\n\n\n\n

branchProtectionRule (BranchProtectionRule)

Identifies the branch protection rule associated with the allowed user or team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PushAllowanceConnection\n

\n

The connection type for PushAllowance.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PushAllowanceEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PushAllowance])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PushAllowanceEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PushAllowance)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RateLimit\n

\n

Represents the client's rate limit.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cost (Int!)

The point cost for the current query counting against the rate limit.

\n\n\n\n\n\n\n\n\n\n\n\n

limit (Int!)

The maximum number of points the client is permitted to consume in a 60 minute window.

\n\n\n\n\n\n\n\n\n\n\n\n

nodeCount (Int!)

The maximum number of nodes this query may return.

\n\n\n\n\n\n\n\n\n\n\n\n

remaining (Int!)

The number of points remaining in the current rate limit window.

\n\n\n\n\n\n\n\n\n\n\n\n

resetAt (DateTime!)

The time at which the current rate limit window resets in UTC epoch seconds.

\n\n\n\n\n\n\n\n\n\n\n\n

used (Int!)

The number of points used in the current rate limit window.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactingUserConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReactingUserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactingUserEdge\n

\n

Represents a user that's made a reaction.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

reactedAt (DateTime!)

The moment when the user made the reaction.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Reaction\n

\n

An emoji reaction to a particular piece of content.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

content (ReactionContent!)

Identifies the emoji reaction.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

reactable (Reactable!)

The reactable piece of content.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

Identifies the user who created this reaction.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactionConnection\n

\n

A list of reactions that have been left on the subject.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReactionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Reaction])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasReacted (Boolean!)

Whether or not the authenticated user has left a reaction on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Reaction)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactionGroup\n

\n

A group of emoji reactions to a particular piece of content.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

content (ReactionContent!)

Identifies the emoji reaction.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime)

Identifies when the reaction was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (Reactable!)

The subject that was reacted to.

\n\n\n\n\n\n\n\n\n\n\n\n

users (ReactingUserConnection!)

Users who have reacted to the reaction subject with the emotion represented by this reaction group.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerHasReacted (Boolean!)

Whether or not the authenticated user has left a reaction on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReadyForReviewEvent\n

\n

Represents aready_for_reviewevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this ready for review event.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this ready for review event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Ref\n

\n

Represents a Git reference.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

associatedPullRequests (PullRequestConnection!)

A list of pull requests with this ref as the head ref.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

branchProtectionRule (BranchProtectionRule)

Branch protection rules for this ref.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The ref name.

\n\n\n\n\n\n\n\n\n\n\n\n

prefix (String!)

The ref's prefix, such as refs/heads/ or refs/tags/.

\n\n\n\n\n\n\n\n\n\n\n\n

refUpdateRule (RefUpdateRule)

Branch protection rules that are viewable by non-admins.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository the ref belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

target (GitObject)

The object the ref points to. Returns null when object does not exist.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RefConnection\n

\n

The connection type for Ref.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RefEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Ref])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RefEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Ref)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RefUpdateRule\n

\n

A ref update rules for a viewer.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allowsDeletions (Boolean!)

Can this branch be deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

allowsForcePushes (Boolean!)

Are force pushes allowed on this branch.

\n\n\n\n\n\n\n\n\n\n\n\n

pattern (String!)

Identifies the protection rule pattern.

\n\n\n\n\n\n\n\n\n\n\n\n

requiredApprovingReviewCount (Int)

Number of approving reviews required to update matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiredStatusCheckContexts ([String])

List of required status check contexts that must pass for commits to be accepted to matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresLinearHistory (Boolean!)

Are merge commits prohibited from being pushed to this branch.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresSignatures (Boolean!)

Are commits required to be signed.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanPush (Boolean!)

Can the viewer push to the branch.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReferencedEvent\n

\n

Represents areferencedevent on a given ReferencedSubject.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with thereferencedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

commitRepository (Repository!)

Identifies the repository associated with thereferencedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Reference originated in a different repository.

\n\n\n\n\n\n\n\n\n\n\n\n

isDirectReference (Boolean!)

Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (ReferencedSubject!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Release\n

\n

A release contains the content for a release.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (User)

The author of the release.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description of the release.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML)

The description of this release rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

isDraft (Boolean!)

Whether or not the release is a draft.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrerelease (Boolean!)

Whether or not the release is a prerelease.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The title of the release.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies the date and time when the release was created.

\n\n\n\n\n\n\n\n\n\n\n\n

releaseAssets (ReleaseAssetConnection!)

List of releases assets which are dependent on this release.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

name (String)

\n

A list of names to filter the assets by.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescriptionHTML (HTML)

A description of the release, rendered to HTML without any links in it.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

limit (Int)

\n

How many characters to return.

\n

The default value is 200.

\n
\n\n
\n\n\n

tag (Ref)

The Git tag the release points to.

\n\n\n\n\n\n\n\n\n\n\n\n

tagName (String!)

The name of the release's Git tag.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseAsset\n

\n

A release asset contains the content for a release asset.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contentType (String!)

The asset's content-type.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

downloadCount (Int!)

The number of times this asset was downloaded.

\n\n\n\n\n\n\n\n\n\n\n\n

downloadUrl (URI!)

Identifies the URL where you can download the release asset via the browser.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Identifies the title of the release asset.

\n\n\n\n\n\n\n\n\n\n\n\n

release (Release)

Release that the asset is associated with.

\n\n\n\n\n\n\n\n\n\n\n\n

size (Int!)

The size (in bytes) of the asset.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

uploadedBy (User!)

The user that performed the upload.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

Identifies the URL of the release asset.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseAssetConnection\n

\n

The connection type for ReleaseAsset.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReleaseAssetEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ReleaseAsset])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseAssetEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ReleaseAsset)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseConnection\n

\n

The connection type for Release.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReleaseEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Release])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Release)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RemovedFromProjectEvent\n

\n

Represents aremoved_from_projectevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Project referenced by event.

\n\n\n\n\n
\n

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectColumnName (String!)

Column name referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RenamedTitleEvent\n

\n

Represents arenamedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

currentTitle (String!)

Identifies the current title of the issue or pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

previousTitle (String!)

Identifies the previous title of the issue or pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (RenamedTitleSubject!)

Subject that was renamed.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReopenedEvent\n

\n

Represents areopenedevent on any Closable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

closable (Closable!)

Object that was reopened.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoAccessAuditEntry\n

\n

Audit log entry for a repo.access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoAccessAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoAddMemberAuditEntry\n

\n

Audit log entry for a repo.add_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoAddMemberAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoAddTopicAuditEntry\n

\n

Audit log entry for a repo.add_topic event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topic (Topic)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topicName (String)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoArchivedAuditEntry\n

\n

Audit log entry for a repo.archived event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoArchivedAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoChangeMergeSettingAuditEntry\n

\n

Audit log entry for a repo.change_merge_setting event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isEnabled (Boolean)

Whether the change was to enable (true) or disable (false) the merge type.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeType (RepoChangeMergeSettingAuditEntryMergeType)

The merge method affected by the change.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.disable_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.disable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableContributorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.disable_contributors_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableSockpuppetDisallowedAuditEntry\n

\n

Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.enable_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.enable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableContributorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.enable_contributors_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableSockpuppetDisallowedAuditEntry\n

\n

Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigLockAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.lock_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigUnlockAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.unlock_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoCreateAuditEntry\n

\n

Audit log entry for a repo.create event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

forkParentName (String)

The name of the parent repository for this forked repository.

\n\n\n\n\n\n\n\n\n\n\n\n

forkSourceName (String)

The name of the root repository for this netork.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoCreateAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoDestroyAuditEntry\n

\n

Audit log entry for a repo.destroy event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoDestroyAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoRemoveMemberAuditEntry\n

\n

Audit log entry for a repo.remove_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoRemoveMemberAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoRemoveTopicAuditEntry\n

\n

Audit log entry for a repo.remove_topic event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topic (Topic)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topicName (String)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Repository\n

\n

A repository contains the content for a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignableUsers (UserConnection!)

A list of users that can be assigned to issues in this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters users with query on user name and login.

\n\n
\n\n
\n\n\n

branchProtectionRules (BranchProtectionRuleConnection!)

A list of branch protection rules for this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

codeOfConduct (CodeOfConduct)

Returns the code of conduct for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

collaborators (RepositoryCollaboratorConnection)

A list of collaborators associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliation (CollaboratorAffiliation)

\n

Collaborators affiliation level with a repository.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters users with query on user name and login.

\n\n
\n\n
\n\n\n

commitComments (CommitCommentConnection!)

A list of commit comments associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

contactLinks ([RepositoryContactLink!])

Returns a list of contact links associated to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

defaultBranchRef (Ref)

The Ref associated with the repository's default branch.

\n\n\n\n\n\n\n\n\n\n\n\n

deleteBranchOnMerge (Boolean!)

Whether or not branches are automatically deleted when merged in this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

dependencyGraphManifests (DependencyGraphManifestConnection)

A list of dependency manifests contained in the repository.

\n\n\n\n\n
\n

Preview notice

\n

dependencyGraphManifests is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

dependenciesAfter (String)

\n

Cursor to paginate dependencies.

\n\n
\n\n
\n

dependenciesFirst (Int)

\n

Number of dependencies to fetch.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

withDependencies (Boolean)

\n

Flag to scope to only manifests with dependencies.

\n\n
\n\n
\n\n\n

deployKeys (DeployKeyConnection!)

A list of deploy keys that are on this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

deployments (DeploymentConnection!)

Deployments associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

environments ([String!])

\n

Environments to list deployments for.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (DeploymentOrder)

\n

Ordering options for deployments returned from the connection.

\n\n
\n\n
\n\n\n

description (String)

The description of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML!)

The description of the repository rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

diskUsage (Int)

The number of kilobytes this repository occupies on disk.

\n\n\n\n\n\n\n\n\n\n\n\n

forkCount (Int!)

Returns how many forks there are of this repository in the whole network.

\n\n\n\n\n\n\n\n\n\n\n\n

forks (RepositoryConnection!)

A list of direct forked repositories.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

fundingLinks ([FundingLink!]!)

The funding links for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

hasIssuesEnabled (Boolean!)

Indicates if the repository has issues feature enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

hasProjectsEnabled (Boolean!)

Indicates if the repository has the Projects feature enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

hasWikiEnabled (Boolean!)

Indicates if the repository has wiki feature enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

homepageUrl (URI)

The repository's URL.

\n\n\n\n\n\n\n\n\n\n\n\n

isArchived (Boolean!)

Indicates if the repository is unmaintained.

\n\n\n\n\n\n\n\n\n\n\n\n

isBlankIssuesEnabled (Boolean!)

Returns true if blank issue creation is allowed.

\n\n\n\n\n\n\n\n\n\n\n\n

isDisabled (Boolean!)

Returns whether or not this repository disabled.

\n\n\n\n\n\n\n\n\n\n\n\n

isEmpty (Boolean!)

Returns whether or not this repository is empty.

\n\n\n\n\n\n\n\n\n\n\n\n

isFork (Boolean!)

Identifies if the repository is a fork.

\n\n\n\n\n\n\n\n\n\n\n\n

isInOrganization (Boolean!)

Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

\n\n\n\n\n\n\n\n\n\n\n\n

isLocked (Boolean!)

Indicates if the repository has been locked or not.

\n\n\n\n\n\n\n\n\n\n\n\n

isMirror (Boolean!)

Identifies if the repository is a mirror.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrivate (Boolean!)

Identifies if the repository is private.

\n\n\n\n\n\n\n\n\n\n\n\n

isSecurityPolicyEnabled (Boolean)

Returns true if this repository has a security policy.

\n\n\n\n\n\n\n\n\n\n\n\n

isTemplate (Boolean!)

Identifies if the repository is a template that can be used to generate new repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

isUserConfigurationRepository (Boolean!)

Is this repository a user configuration repository?.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue)

Returns a single issue from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the issue to be returned.

\n\n
\n\n
\n\n\n

issueOrPullRequest (IssueOrPullRequest)

Returns a single issue-like object from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the issue to be returned.

\n\n
\n\n
\n\n\n

issueTemplates ([IssueTemplate!])

Returns a list of issue templates associated to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

issues (IssueConnection!)

A list of issues that have been opened in the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

label (Label)

Returns a single label by name.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

Label name.

\n\n
\n\n
\n\n\n

labels (LabelConnection)

A list of labels associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LabelOrder)

\n

Ordering options for labels returned from the connection.

\n\n
\n\n
\n

query (String)

\n

If provided, searches labels by name and description.

\n\n
\n\n
\n\n\n

languages (LanguageConnection)

A list containing a breakdown of the language composition of the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LanguageOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

licenseInfo (License)

The license associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

lockReason (RepositoryLockReason)

The reason the repository has been locked.

\n\n\n\n\n\n\n\n\n\n\n\n

mentionableUsers (UserConnection!)

A list of Users that can be mentioned in the context of the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters users with query on user name and login.

\n\n
\n\n
\n\n\n

mergeCommitAllowed (Boolean!)

Whether or not PRs are merged with a merge commit on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

milestone (Milestone)

Returns a single milestone from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the milestone to be returned.

\n\n
\n\n
\n\n\n

milestones (MilestoneConnection)

A list of milestones associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (MilestoneOrder)

\n

Ordering options for milestones.

\n\n
\n\n
\n

query (String)

\n

Filters milestones with a query on the title.

\n\n
\n\n
\n

states ([MilestoneState!])

\n

Filter by the state of the milestones.

\n\n
\n\n
\n\n\n

mirrorUrl (URI)

The repository's original mirror URL.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

nameWithOwner (String!)

The repository's name with owner.

\n\n\n\n\n\n\n\n\n\n\n\n

object (GitObject)

A Git object in the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

expression (String)

\n

A Git revision expression suitable for rev-parse.

\n\n
\n\n
\n

oid (GitObjectID)

\n

The Git object ID.

\n\n
\n\n
\n\n\n

openGraphImageUrl (URI!)

The image used to represent this repository in Open Graph data.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (RepositoryOwner!)

The User owner of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

packages (PackageConnection!)

A list of packages under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

names ([String])

\n

Find packages by their names.

\n\n
\n\n
\n

orderBy (PackageOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n

packageType (PackageType)

\n

Filter registry package by type.

\n\n
\n\n
\n

repositoryId (ID)

\n

Find packages in a repository by ID.

\n\n
\n\n
\n\n\n

parent (Repository)

The repository parent, if this is a fork.

\n\n\n\n\n\n\n\n\n\n\n\n

pinnedIssues (PinnedIssueConnection)

A list of pinned issues for this repository.

\n\n\n\n\n
\n

Preview notice

\n

pinnedIssues is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

primaryLanguage (Language)

The primary language of the repository's code.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Find project by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The project number to find.

\n\n
\n\n
\n\n\n

projects (ProjectConnection!)

A list of projects under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ProjectOrder)

\n

Ordering options for projects returned from the connection.

\n\n
\n\n
\n

search (String)

\n

Query to search projects by, currently only searching by name.

\n\n
\n\n
\n

states ([ProjectState!])

\n

A list of states to filter the projects by.

\n\n
\n\n
\n\n\n

projectsResourcePath (URI!)

The HTTP path listing the repository's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

projectsUrl (URI!)

The HTTP URL listing the repository's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

Returns a single pull request from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the pull request to be returned.

\n\n
\n\n
\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests that have been opened in the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

pushedAt (DateTime)

Identifies when the repository was last pushed to.

\n\n\n\n\n\n\n\n\n\n\n\n

rebaseMergeAllowed (Boolean!)

Whether or not rebase-merging is enabled on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Fetch a given ref from the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

qualifiedName (String!)

\n

The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

\n\n
\n\n
\n\n\n

refs (RefConnection)

Fetch a list of refs from the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

direction (OrderDirection)

\n

DEPRECATED: use orderBy. The ordering direction.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RefOrder)

\n

Ordering options for refs returned from the connection.

\n\n
\n\n
\n

query (String)

\n

Filters refs with query on name.

\n\n
\n\n
\n

refPrefix (String!)

\n

A ref name prefix like refs/heads/, refs/tags/, etc.

\n\n
\n\n
\n\n\n

release (Release)

Lookup a single release given various criteria.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

tagName (String!)

\n

The name of the Tag the Release was created from.

\n\n
\n\n
\n\n\n

releases (ReleaseConnection!)

List of releases which are dependent on this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReleaseOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

repositoryTopics (RepositoryTopicConnection!)

A list of applied repository-topic associations for this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

securityPolicyUrl (URI)

The security policy URL.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescriptionHTML (HTML!)

A description of the repository, rendered to HTML without any links in it.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

limit (Int)

\n

How many characters to return.

\n

The default value is 200.

\n
\n\n
\n\n\n

squashMergeAllowed (Boolean!)

Whether or not squash-merging is enabled on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

sshUrl (GitSSHRemote!)

The SSH URL to clone this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazerCount (Int!)

Returns a count of how many stargazers there are on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazers (StargazerConnection!)

A list of users who have starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

submodules (SubmoduleConnection!)

Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

tempCloneToken (String)

Temporary authentication token for cloning this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

templateRepository (Repository)

The repository from which this repository was generated, if any.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

usesCustomOpenGraphImage (Boolean!)

Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAdminister (Boolean!)

Indicates whether the viewer has admin permissions on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateProjects (Boolean!)

Can the current viewer create new projects on this owner.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdateTopics (Boolean!)

Indicates whether the viewer can update the topics of this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDefaultCommitEmail (String)

The last commit email for the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDefaultMergeMethod (PullRequestMergeMethod!)

The last used merge method by the viewer or the default for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasStarred (Boolean!)

Returns a boolean indicating whether the viewing user has starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerPermission (RepositoryPermission)

The users permission level on the repository. Will return null if authenticated as an GitHub App.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerPossibleCommitEmails ([String!])

A list of emails this viewer can commit with.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

A list of vulnerability alerts that are on this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

watchers (UserConnection!)

A list of users watching the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryCollaboratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryCollaboratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryCollaboratorEdge\n

\n

Represents a user who is a collaborator of a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (RepositoryPermission!)

The permission the user has on the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

permissionSources ([PermissionSource!])

A list of sources for the user's access to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryConnection\n

\n

A list of repositories owned by the subject.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Repository])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalDiskUsage (Int!)

The total size in kilobytes of all repositories in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryContactLink\n

\n

A repository contact link.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

about (String!)

The contact link purpose.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The contact link name.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The contact link URL.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Repository)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInvitation\n

\n

An invitation for a user to be added to a repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String)

The email address that received the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

invitee (User)

The user who received the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

inviter (User!)

The user who created the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI!)

The permalink for this repository invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (RepositoryPermission!)

The permission granted on this repository by this invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (RepositoryInfo)

The Repository the user is invited to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInvitationConnection\n

\n

The connection type for RepositoryInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([RepositoryInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInvitationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (RepositoryInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryTopic\n

\n

A repository-topic connects a repository to a topic.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

resourcePath (URI!)

The HTTP path for this repository-topic.

\n\n\n\n\n\n\n\n\n\n\n\n

topic (Topic!)

The topic.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this repository-topic.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryTopicConnection\n

\n

The connection type for RepositoryTopic.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryTopicEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([RepositoryTopic])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryTopicEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (RepositoryTopic)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVisibilityChangeDisableAuditEntry\n

\n

Audit log entry for a repository_visibility_change.disable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVisibilityChangeEnableAuditEntry\n

\n

Audit log entry for a repository_visibility_change.enable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVulnerabilityAlert\n

\n

A alert for a repository with an affected vulnerability.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

When was the alert created?.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissReason (String)

The reason the alert was dismissed.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissedAt (DateTime)

When was the alert dimissed?.

\n\n\n\n\n\n\n\n\n\n\n\n

dismisser (User)

The user who dismissed the alert.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The associated repository.

\n\n\n\n\n\n\n\n\n\n\n\n

securityAdvisory (SecurityAdvisory)

The associated security advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

securityVulnerability (SecurityVulnerability)

The associated security vulnerablity.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableManifestFilename (String!)

The vulnerable manifest filename.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableManifestPath (String!)

The vulnerable manifest path.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableRequirements (String)

The vulnerable requirements.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVulnerabilityAlertConnection\n

\n

The connection type for RepositoryVulnerabilityAlert.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryVulnerabilityAlertEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([RepositoryVulnerabilityAlert])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVulnerabilityAlertEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (RepositoryVulnerabilityAlert)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RestrictedContribution\n

\n

Represents a private contribution a user made on GitHub.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissalAllowance\n

\n

A team or user who has the ability to dismiss a review on a protected branch.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (ReviewDismissalAllowanceActor)

The actor that can dismiss.

\n\n\n\n\n\n\n\n\n\n\n\n

branchProtectionRule (BranchProtectionRule)

Identifies the branch protection rule associated with the allowed user or team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissalAllowanceConnection\n

\n

The connection type for ReviewDismissalAllowance.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReviewDismissalAllowanceEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ReviewDismissalAllowance])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissalAllowanceEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ReviewDismissalAllowance)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissedEvent\n

\n

Represents areview_dismissedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissalMessage (String)

Identifies the optional message associated with thereview_dismissedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissalMessageHTML (String)

Identifies the optional message associated with the event, rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

previousReviewState (PullRequestReviewState!)

Identifies the previous state of the review with thereview_dismissedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequestCommit (PullRequestCommit)

Identifies the commit which caused the review to become stale.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this review dismissed event.

\n\n\n\n\n\n\n\n\n\n\n\n

review (PullRequestReview)

Identifies the review associated with thereview_dismissedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this review dismissed event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequest\n

\n

A request for a user to review a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

asCodeOwner (Boolean!)

Whether this request was created for a code owner.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

Identifies the pull request associated with this review request.

\n\n\n\n\n\n\n\n\n\n\n\n

requestedReviewer (RequestedReviewer)

The reviewer that is requested.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestConnection\n

\n

The connection type for ReviewRequest.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReviewRequestEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ReviewRequest])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ReviewRequest)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestRemovedEvent\n

\n

Represents anreview_request_removedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

requestedReviewer (RequestedReviewer)

Identifies the reviewer whose review request was removed.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestedEvent\n

\n

Represents anreview_requestedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

requestedReviewer (RequestedReviewer)

Identifies the reviewer whose review was requested.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewStatusHovercardContext\n

\n

A hovercard context with a message describing the current code review state of the pull\nrequest.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewDecision (PullRequestReviewDecision)

The current status of the pull request with respect to code review.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SavedReply\n

\n

A Saved Reply is text a user can use to reply quickly.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String!)

The body of the saved reply.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The saved reply body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

The title of the saved reply.

\n\n\n\n\n\n\n\n\n\n\n\n

user (Actor)

The user that saved this reply.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SavedReplyConnection\n

\n

The connection type for SavedReply.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SavedReplyEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SavedReply])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SavedReplyEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SavedReply)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SearchResultItemConnection\n

\n

A list of results that matched against a search query.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

codeCount (Int!)

The number of pieces of code that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

edges ([SearchResultItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

issueCount (Int!)

The number of issues that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SearchResultItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryCount (Int!)

The number of repositories that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

userCount (Int!)

The number of users that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

wikiCount (Int!)

The number of wiki pages that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SearchResultItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SearchResultItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

textMatches ([TextMatch])

Text matches on the result found.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisory\n

\n

A GitHub Security Advisory.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String!)

This is a long plaintext description of the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

ghsaId (String!)

The GitHub Security Advisory ID.

\n\n\n\n\n\n\n\n\n\n\n\n

identifiers ([SecurityAdvisoryIdentifier!]!)

A list of identifiers for this advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

origin (String!)

The organization that originated the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI)

The permalink for the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime!)

When the advisory was published.

\n\n\n\n\n\n\n\n\n\n\n\n

references ([SecurityAdvisoryReference!]!)

A list of references for this advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

severity (SecurityAdvisorySeverity!)

The severity of the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

summary (String!)

A short plaintext summary of the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

When the advisory was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerabilities (SecurityVulnerabilityConnection!)

Vulnerabilities associated with this Advisory.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

ecosystem (SecurityAdvisoryEcosystem)

\n

An ecosystem to filter vulnerabilities by.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SecurityVulnerabilityOrder)

\n

Ordering options for the returned topics.

\n\n
\n\n
\n

package (String)

\n

A package name to filter vulnerabilities by.

\n\n
\n\n
\n

severities ([SecurityAdvisorySeverity!])

\n

A list of severities to filter vulnerabilities by.

\n\n
\n\n
\n\n\n

withdrawnAt (DateTime)

When the advisory was withdrawn, if it has been withdrawn.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryConnection\n

\n

The connection type for SecurityAdvisory.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SecurityAdvisoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SecurityAdvisory])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SecurityAdvisory)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryIdentifier\n

\n

A GitHub Security Advisory Identifier.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

type (String!)

The identifier type, e.g. GHSA, CVE.

\n\n\n\n\n\n\n\n\n\n\n\n

value (String!)

The identifier.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryPackage\n

\n

An individual package.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

ecosystem (SecurityAdvisoryEcosystem!)

The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The package name.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryPackageVersion\n

\n

An individual package version.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

identifier (String!)

The package name or version.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryReference\n

\n

A GitHub Security Advisory Reference.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

url (URI!)

A publicly accessible reference.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityVulnerability\n

\n

An individual vulnerability within an Advisory.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

advisory (SecurityAdvisory!)

The Advisory associated with this Vulnerability.

\n\n\n\n\n\n\n\n\n\n\n\n

firstPatchedVersion (SecurityAdvisoryPackageVersion)

The first version containing a fix for the vulnerability.

\n\n\n\n\n\n\n\n\n\n\n\n

package (SecurityAdvisoryPackage!)

A description of the vulnerable package.

\n\n\n\n\n\n\n\n\n\n\n\n

severity (SecurityAdvisorySeverity!)

The severity of the vulnerability within this package.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

When the vulnerability was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableVersionRange (String!)

A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

\n
    \n
  • = 0.2.0 denotes a single vulnerable version.
  • \n
  • <= 1.0.8 denotes a version range up to and including the specified version
  • \n
  • < 0.1.11 denotes a version range up to, but excluding, the specified version
  • \n
  • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
  • \n
  • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
  • \n

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityVulnerabilityConnection\n

\n

The connection type for SecurityVulnerability.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SecurityVulnerabilityEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SecurityVulnerability])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityVulnerabilityEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SecurityVulnerability)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SmimeSignature\n

\n

Represents an S/MIME signature on a Commit or Tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String!)

Email used to sign this object.

\n\n\n\n\n\n\n\n\n\n\n\n

isValid (Boolean!)

True if the signature is valid and verified by GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String!)

Payload for GPG signing object. Raw ODB object without the signature header.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (String!)

ASCII-armored signature header from object.

\n\n\n\n\n\n\n\n\n\n\n\n

signer (User)

GitHub user corresponding to the email signing this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (GitSignatureState!)

The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

\n\n\n\n\n\n\n\n\n\n\n\n

wasSignedByGitHub (Boolean!)

True if the signature was made with GitHub's signing key.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsListing\n

\n

A GitHub Sponsors listing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescription (String!)

The full description of the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescriptionHTML (HTML!)

The full description of the listing rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The listing's full name.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescription (String!)

The short description of the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The short name of the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

tiers (SponsorsTierConnection)

The published tiers for this GitHub Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorsTierOrder)

\n

Ordering options for Sponsors tiers returned from the connection.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTier\n

\n

A GitHub Sponsors tier associated with a GitHub Sponsors listing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

adminInfo (SponsorsTierAdminInfo)

SponsorsTier information only visible to users that can administer the associated Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String!)

The description of the tier.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML!)

The tier description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

monthlyPriceInCents (Int!)

How much this tier costs per month in cents.

\n\n\n\n\n\n\n\n\n\n\n\n

monthlyPriceInDollars (Int!)

How much this tier costs per month in dollars.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the tier.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorsListing (SponsorsListing!)

The sponsors listing that this tier belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTierAdminInfo\n

\n

SponsorsTier information only visible to users that can administer the associated Sponsors listing.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

sponsorships (SponsorshipConnection!)

The sponsorships associated with this tier.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includePrivate (Boolean)

\n

Whether or not to include private sponsorships in the result set.

\n

The default value is false.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTierConnection\n

\n

The connection type for SponsorsTier.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SponsorsTierEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SponsorsTier])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTierEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SponsorsTier)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Sponsorship\n

\n

A sponsorship relationship between a sponsor and a maintainer.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

maintainer (User!)

The entity that is being sponsored.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

maintainer is deprecated.

Sponsorship.maintainer will be removed. Use Sponsorship.sponsorable instead. Removal on 2020-04-01 UTC.

\n
\n\n\n\n\n\n\n

privacyLevel (SponsorshipPrivacy!)

The privacy level for this sponsorship.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsor (User)

The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

sponsor is deprecated.

Sponsorship.sponsor will be removed. Use Sponsorship.sponsorEntity instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n\n

sponsorEntity (Sponsor)

The user or organization that is sponsoring, if you have permission to view them.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorable (Sponsorable!)

The entity that is being sponsored.

\n\n\n\n\n\n\n\n\n\n\n\n

tier (SponsorsTier)

The associated sponsorship tier.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorshipConnection\n

\n

The connection type for Sponsorship.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SponsorshipEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Sponsorship])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorshipEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Sponsorship)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StargazerConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([StargazerEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StargazerEdge\n

\n

Represents a user that's starred a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

starredAt (DateTime!)

Identifies when the item was starred.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StarredRepositoryConnection\n

\n

The connection type for Repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([StarredRepositoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

isOverLimit (Boolean!)

Is the list of stars for this user truncated? This is true for users that have many stars.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Repository])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StarredRepositoryEdge\n

\n

Represents a starred repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

starredAt (DateTime!)

Identifies when the item was starred.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Status\n

\n

Represents a commit status.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

combinedContexts (StatusCheckRollupContextConnection!)

A list of status contexts and check runs for this commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit)

The commit this status is attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

context (StatusContext)

Looks up an individual status context by context name.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

The context name.

\n\n
\n\n
\n\n\n

contexts ([StatusContext!]!)

The individual status contexts for this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (StatusState!)

The combined commit status.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusCheckRollup\n

\n

Represents the rollup for both the check runs and status for a commit.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commit (Commit)

The commit the status and check runs are attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

contexts (StatusCheckRollupContextConnection!)

A list of status contexts and check runs for this commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

state (StatusState!)

The combined status for the commit.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusCheckRollupContextConnection\n

\n

The connection type for StatusCheckRollupContext.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([StatusCheckRollupContextEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([StatusCheckRollupContext])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusCheckRollupContextEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (StatusCheckRollupContext)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusContext\n

\n

Represents an individual commit status context.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI)

The avatar of the OAuth application or the user that created the status.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n

The default value is 40.

\n
\n\n
\n\n\n

commit (Commit)

This commit this status context is attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

context (String!)

The name of this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

The actor who created this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description for this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

state (StatusState!)

The state of this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

targetUrl (URI)

The URL for this status context.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Submodule\n

\n

A pointer to a repository at a specific revision embedded inside another repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branch (String)

The branch of the upstream submodule for tracking updates.

\n\n\n\n\n\n\n\n\n\n\n\n

gitUrl (URI!)

The git URL of the submodule repository.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the submodule in .gitmodules.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path in the superproject that this submodule is located in.

\n\n\n\n\n\n\n\n\n\n\n\n

subprojectCommitOid (GitObjectID)

The commit revision of the subproject repository being tracked by the submodule.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SubmoduleConnection\n

\n

The connection type for Submodule.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SubmoduleEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Submodule])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SubmoduleEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Submodule)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SubscribedEvent\n

\n

Represents asubscribedevent on a given Subscribable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subscribable (Subscribable!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SuggestedReviewer\n

\n

A suggestion to review a pull request based on a user's commit history and review comments.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isAuthor (Boolean!)

Is this suggestion based on past commits?.

\n\n\n\n\n\n\n\n\n\n\n\n

isCommenter (Boolean!)

Is this suggestion based on past review comments?.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewer (User!)

Identifies the user suggested to review the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Tag\n

\n

Represents a Git tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

commitResourcePath (URI!)

The HTTP path for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitUrl (URI!)

The HTTP URL for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

message (String)

The Git tag message.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The Git tag name.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

The Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the Git object belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

tagger (GitActor)

Details about the tag author.

\n\n\n\n\n\n\n\n\n\n\n\n

target (GitObject!)

The Git object the tag points to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Team\n

\n

A team of users in an organization.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

ancestors (TeamConnection!)

A list of teams that are ancestors of this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

avatarUrl (URI)

A URL pointing to the team's avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size in pixels of the resulting square image.

\n

The default value is 400.

\n
\n\n
\n\n\n

childTeams (TeamConnection!)

List of child teams belonging to this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

immediateOnly (Boolean)

\n

Whether to list immediate child teams or all descendant child teams.

\n

The default value is true.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamOrder)

\n

Order for connection.

\n\n
\n\n
\n

userLogins ([String!])

\n

User logins to filter by.

\n\n
\n\n
\n\n\n

combinedSlug (String!)

The slug corresponding to the organization and team.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

discussion (TeamDiscussion)

Find a team discussion by its number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The sequence number of the discussion to find.

\n\n
\n\n
\n\n\n

discussions (TeamDiscussionConnection!)

A list of team discussions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isPinned (Boolean)

\n

If provided, filters discussions according to whether or not they are pinned.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamDiscussionOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

discussionsResourcePath (URI!)

The HTTP path for team discussions.

\n\n\n\n\n\n\n\n\n\n\n\n

discussionsUrl (URI!)

The HTTP URL for team discussions.

\n\n\n\n\n\n\n\n\n\n\n\n

editTeamResourcePath (URI!)

The HTTP path for editing this team.

\n\n\n\n\n\n\n\n\n\n\n\n

editTeamUrl (URI!)

The HTTP URL for editing this team.

\n\n\n\n\n\n\n\n\n\n\n\n

invitations (OrganizationInvitationConnection)

A list of pending invitations for users to this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

memberStatuses (UserStatusConnection!)

Get the status messages members of this entity have set that are either public or visible only to the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (UserStatusOrder)

\n

Ordering options for user statuses returned from the connection.

\n\n
\n\n
\n\n\n

members (TeamMemberConnection!)

A list of users who are members of this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

membership (TeamMembershipType)

\n

Filter by membership type.

\n

The default value is ALL.

\n
\n\n
\n

orderBy (TeamMemberOrder)

\n

Order for the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (TeamMemberRole)

\n

Filter by team member role.

\n\n
\n\n
\n\n\n

membersResourcePath (URI!)

The HTTP path for the team' members.

\n\n\n\n\n\n\n\n\n\n\n\n

membersUrl (URI!)

The HTTP URL for the team' members.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamResourcePath (URI!)

The HTTP path creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamUrl (URI!)

The HTTP URL creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization!)

The organization that owns this team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeam (Team)

The parent team of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

privacy (TeamPrivacy!)

The level of privacy the team has.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (TeamRepositoryConnection!)

A list of repositories this team has access to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamRepositoryOrder)

\n

Order for the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

repositoriesResourcePath (URI!)

The HTTP path for this team's repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoriesUrl (URI!)

The HTTP URL for this team's repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

What algorithm is used for review assignment for this team.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

reviewRequestDelegationEnabled (Boolean!)

True if review assignment is enabled for this team.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

reviewRequestDelegationMemberCount (Int)

How many team members are required for review assignment for this team.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

reviewRequestDelegationNotifyTeam (Boolean!)

When assigning team members via delegation, whether the entire team should be notified as well.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

slug (String!)

The slug corresponding to the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsResourcePath (URI!)

The HTTP path for this team's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsUrl (URI!)

The HTTP URL for this team's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAdminister (Boolean!)

Team is adminable by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamAddMemberAuditEntry\n

\n

Audit log entry for a team.add_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamAddRepositoryAuditEntry\n

\n

Audit log entry for a team.add_repository event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamChangeParentTeamAuditEntry\n

\n

Audit log entry for a team.change_parent_team event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeam (Team)

The new parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamName (String)

The name of the new parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamNameWas (String)

The name of the former parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamResourcePath (URI)

The HTTP path for the parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamUrl (URI)

The HTTP URL for the parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamWas (Team)

The former parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamWasResourcePath (URI)

The HTTP path for the previous parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamWasUrl (URI)

The HTTP URL for the previous parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamConnection\n

\n

The connection type for Team.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Team])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussion\n

\n

A team discussion.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the discussion's team.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyVersion (String!)

Identifies the discussion body hash.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (TeamDiscussionCommentConnection!)

A list of comments on this discussion.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

fromComment (Int)

\n

When provided, filters the connection such that results begin with the comment with this number.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamDiscussionCommentOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

commentsResourcePath (URI!)

The HTTP path for discussion comments.

\n\n\n\n\n\n\n\n\n\n\n\n

commentsUrl (URI!)

The HTTP URL for discussion comments.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isPinned (Boolean!)

Whether or not the discussion is pinned.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrivate (Boolean!)

Whether or not the discussion is only visible to team members and org admins.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the discussion within its team.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team!)

The team that defines the context of this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

The title of the discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanPin (Boolean!)

Whether or not the current viewer can pin this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionComment\n

\n

A comment on a team discussion.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the comment's team.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyVersion (String!)

The current version of the body content.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

discussion (TeamDiscussion!)

The discussion this comment is about.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the comment number.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionCommentConnection\n

\n

The connection type for TeamDiscussionComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamDiscussionCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([TeamDiscussionComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (TeamDiscussionComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionConnection\n

\n

The connection type for TeamDiscussion.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamDiscussionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([TeamDiscussion])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (TeamDiscussion)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Team)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamMemberConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamMemberEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamMemberEdge\n

\n

Represents a user who is a member of a team.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

memberAccessResourcePath (URI!)

The HTTP path to the organization's member access page.

\n\n\n\n\n\n\n\n\n\n\n\n

memberAccessUrl (URI!)

The HTTP URL to the organization's member access page.

\n\n\n\n\n\n\n\n\n\n\n\n

role (TeamMemberRole!)

The role the member has on the team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRemoveMemberAuditEntry\n

\n

Audit log entry for a team.remove_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRemoveRepositoryAuditEntry\n

\n

Audit log entry for a team.remove_repository event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRepositoryConnection\n

\n

The connection type for Repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamRepositoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Repository])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRepositoryEdge\n

\n

Represents a team repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (RepositoryPermission!)

The permission level the team has on the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TextMatch\n

\n

A text match within a search result.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

fragment (String!)

The specific text fragment within the property matched on.

\n\n\n\n\n\n\n\n\n\n\n\n

highlights ([TextMatchHighlight!]!)

Highlights within the matched fragment.

\n\n\n\n\n\n\n\n\n\n\n\n

property (String!)

The property matched on.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TextMatchHighlight\n

\n

Represents a single highlight in a search result match.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

beginIndice (Int!)

The indice in the fragment where the matched text begins.

\n\n\n\n\n\n\n\n\n\n\n\n

endIndice (Int!)

The indice in the fragment where the matched text ends.

\n\n\n\n\n\n\n\n\n\n\n\n

text (String!)

The text matched.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Topic\n

\n

A topic aggregates entities that are related to a subject.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

name (String!)

The topic's name.

\n\n\n\n\n\n\n\n\n\n\n\n

relatedTopics ([Topic!]!)

A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

first (Int)

\n

How many topics to return.

\n

The default value is 3.

\n
\n\n
\n\n\n

stargazerCount (Int!)

Returns a count of how many stargazers there are on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazers (StargazerConnection!)

A list of users who have starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

viewerHasStarred (Boolean!)

Returns a boolean indicating whether the viewing user has starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TransferredEvent\n

\n

Represents atransferredevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

fromRepository (Repository)

The repository this came from.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Tree\n

\n

Represents a Git tree.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

commitResourcePath (URI!)

The HTTP path for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitUrl (URI!)

The HTTP URL for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

entries ([TreeEntry!])

A list of tree entries.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

The Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the Git object belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TreeEntry\n

\n

Represents a Git tree entry.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

extension (String)

The extension of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

isGenerated (Boolean!)

Whether or not this tree entry is generated.

\n\n\n\n\n\n\n\n\n\n\n\n

mode (Int!)

Entry file mode.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Entry file name.

\n\n\n\n\n\n\n\n\n\n\n\n

object (GitObject)

Entry file object.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

Entry file Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String)

The full path of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the tree entry belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

submodule (Submodule)

If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

\n\n\n\n\n\n\n\n\n\n\n\n

type (String!)

Entry file type.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnassignedEvent\n

\n

Represents anunassignedevent on any assignable object.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

assignable (Assignable!)

Identifies the assignable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n

assignee (Assignee)

Identifies the user or mannequin that was unassigned.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

Identifies the subject (user) who was unassigned.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

user is deprecated.

Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnknownSignature\n

\n

Represents an unknown signature on a Commit or Tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String!)

Email used to sign this object.

\n\n\n\n\n\n\n\n\n\n\n\n

isValid (Boolean!)

True if the signature is valid and verified by GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String!)

Payload for GPG signing object. Raw ODB object without the signature header.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (String!)

ASCII-armored signature header from object.

\n\n\n\n\n\n\n\n\n\n\n\n

signer (User)

GitHub user corresponding to the email signing this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (GitSignatureState!)

The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

\n\n\n\n\n\n\n\n\n\n\n\n

wasSignedByGitHub (Boolean!)

True if the signature was made with GitHub's signing key.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnlabeledEvent\n

\n

Represents anunlabeledevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

label (Label!)

Identifies the label associated with theunlabeledevent.

\n\n\n\n\n\n\n\n\n\n\n\n

labelable (Labelable!)

Identifies the Labelable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnlockedEvent\n

\n

Represents anunlockedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

lockable (Lockable!)

Object that was unlocked.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnmarkedAsDuplicateEvent\n

\n

Represents anunmarked_as_duplicateevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

canonical (IssueOrPullRequest)

The authoritative issue or pull request which has been duplicated by another.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request which has been marked as a duplicate of another.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Canonical and duplicate belong to different repositories.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnpinnedEvent\n

\n

Represents anunpinnedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnsubscribedEvent\n

\n

Represents anunsubscribedevent on a given Subscribable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subscribable (Subscribable!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n User\n

\n

A user is an individual's account on GitHub that owns repositories and can make new content.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

anyPinnableItems (Boolean!)

Determine if this repository owner has any items that can be pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

type (PinnableItemType)

\n

Filter to only a particular kind of pinnable item.

\n\n
\n\n
\n\n\n

avatarUrl (URI!)

A URL pointing to the user's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

bio (String)

The user's public profile bio.

\n\n\n\n\n\n\n\n\n\n\n\n

bioHTML (HTML!)

The user's public profile bio as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

commitComments (CommitCommentConnection!)

A list of commit comments made by this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

company (String)

The user's public profile company.

\n\n\n\n\n\n\n\n\n\n\n\n

companyHTML (HTML!)

The user's public profile company as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

contributionsCollection (ContributionsCollection!)

The collection of contributions this user has made to different repositories.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

from (DateTime)

\n

Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

\n\n
\n\n
\n

organizationID (ID)

\n

The ID of the organization used to filter contributions.

\n\n
\n\n
\n

to (DateTime)

\n

Only contributions made before and up to and including this time will be\ncounted. If omitted, defaults to the current time.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String!)

The user's publicly visible profile email.

\n\n\n\n\n\n\n\n\n\n\n\n

followers (FollowerConnection!)

A list of users the given user is followed by.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

following (FollowingConnection!)

A list of users the given user is following.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

gist (Gist)

Find gist by repo name.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

The gist name to find.

\n\n
\n\n
\n\n\n

gistComments (GistCommentConnection!)

A list of gist comments made by this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

gists (GistConnection!)

A list of the Gists the user has created.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (GistOrder)

\n

Ordering options for gists returned from the connection.

\n\n
\n\n
\n

privacy (GistPrivacy)

\n

Filters Gists according to privacy.

\n\n
\n\n
\n\n\n

hasSponsorsListing (Boolean!)

True if this user/organization has a GitHub Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n\n

hovercard (Hovercard!)

The hovercard information for this user in a given context.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

primarySubjectId (ID)

\n

The ID of the subject to get the hovercard in the context of.

\n\n
\n\n
\n\n\n

isBountyHunter (Boolean!)

Whether or not this user is a participant in the GitHub Security Bug Bounty.

\n\n\n\n\n\n\n\n\n\n\n\n

isCampusExpert (Boolean!)

Whether or not this user is a participant in the GitHub Campus Experts Program.

\n\n\n\n\n\n\n\n\n\n\n\n

isDeveloperProgramMember (Boolean!)

Whether or not this user is a GitHub Developer Program member.

\n\n\n\n\n\n\n\n\n\n\n\n

isEmployee (Boolean!)

Whether or not this user is a GitHub employee.

\n\n\n\n\n\n\n\n\n\n\n\n

isHireable (Boolean!)

Whether or not the user has marked themselves as for hire.

\n\n\n\n\n\n\n\n\n\n\n\n

isSiteAdmin (Boolean!)

Whether or not this user is a site administrator.

\n\n\n\n\n\n\n\n\n\n\n\n

isSponsoringViewer (Boolean!)

True if the viewer is sponsored by this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

isViewer (Boolean!)

Whether or not this user is the viewing user.

\n\n\n\n\n\n\n\n\n\n\n\n

issueComments (IssueCommentConnection!)

A list of issue comments made by this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueCommentOrder)

\n

Ordering options for issue comments returned from the connection.

\n\n
\n\n
\n\n\n

issues (IssueConnection!)

A list of issues associated with this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

itemShowcase (ProfileItemShowcase!)

Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

\n\n\n\n\n\n\n\n\n\n\n\n

location (String)

The user's public profile location.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The username used to login.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The user's public profile name.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

Find an organization by its login that the user belongs to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

login (String!)

\n

The login of the organization to find.

\n\n
\n\n
\n\n\n

organizationVerifiedDomainEmails ([String!]!)

Verified email addresses that match verified domains for a specified organization the user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

login (String!)

\n

The login of the organization to match verified domains from.

\n\n
\n\n
\n\n\n

organizations (OrganizationConnection!)

A list of organizations the user belongs to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

packages (PackageConnection!)

A list of packages under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

names ([String])

\n

Find packages by their names.

\n\n
\n\n
\n

orderBy (PackageOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n

packageType (PackageType)

\n

Filter registry package by type.

\n\n
\n\n
\n

repositoryId (ID)

\n

Find packages in a repository by ID.

\n\n
\n\n
\n\n\n

pinnableItems (PinnableItemConnection!)

A list of repositories and gists this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinnable items that are returned.

\n\n
\n\n
\n\n\n

pinnedItems (PinnableItemConnection!)

A list of repositories and gists this profile owner has pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinned items that are returned.

\n\n
\n\n
\n\n\n

pinnedItemsRemaining (Int!)

Returns how many more items this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Find project by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The project number to find.

\n\n
\n\n
\n\n\n

projects (ProjectConnection!)

A list of projects under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ProjectOrder)

\n

Ordering options for projects returned from the connection.

\n\n
\n\n
\n

search (String)

\n

Query to search projects by, currently only searching by name.

\n\n
\n\n
\n

states ([ProjectState!])

\n

A list of states to filter the projects by.

\n\n
\n\n
\n\n\n

projectsResourcePath (URI!)

The HTTP path listing user's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

projectsUrl (URI!)

The HTTP URL listing user's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

publicKeys (PublicKeyConnection!)

A list of public keys associated with this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests associated with this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

repositories (RepositoryConnection!)

A list of repositories that the user owns.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isFork (Boolean)

\n

If non-null, filters repositories according to whether they are forks of another repository.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

repositoriesContributedTo (RepositoryConnection!)

A list of repositories that the user recently contributed to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

contributionTypes ([RepositoryContributionType])

\n

If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includeUserRepositories (Boolean)

\n

If true, include user repositories.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

repository (Repository)

Find Repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

Name of Repository to find.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

savedReplies (SavedReplyConnection)

Replies this user has saved.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SavedReplyOrder)

\n

The field to order saved replies by.

\n\n
\n\n
\n\n\n

sponsorsListing (SponsorsListing)

The GitHub Sponsors listing for this user or organization.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorshipsAsMaintainer (SponsorshipConnection!)

This object's sponsorships as the maintainer.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includePrivate (Boolean)

\n

Whether or not to include private sponsorships in the result set.

\n

The default value is false.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

sponsorshipsAsSponsor (SponsorshipConnection!)

This object's sponsorships as the sponsor.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

starredRepositories (StarredRepositoryConnection!)

Repositories the user has starred.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n

ownedByViewer (Boolean)

\n

Filters starred repositories to only return repositories owned by the viewer.

\n\n
\n\n
\n\n\n

status (UserStatus)

The user's description of what they're currently doing.

\n\n\n\n\n\n\n\n\n\n\n\n

topRepositories (RepositoryConnection!)

Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder!)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

since (DateTime)

\n

How far back in time to fetch contributed repositories.

\n\n
\n\n
\n\n\n

twitterUsername (String)

The user's Twitter username.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanChangePinnedItems (Boolean!)

Can the viewer pin repositories and gists to the profile?.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateProjects (Boolean!)

Can the current viewer create new projects on this owner.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanFollow (Boolean!)

Whether or not the viewer is able to follow the user.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSponsor (Boolean!)

Whether or not the viewer is able to sponsor this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsFollowing (Boolean!)

Whether or not this user is followed by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsSponsoring (Boolean!)

True if the viewer is sponsoring this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

watching (RepositoryConnection!)

A list of repositories the given user is watching.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

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.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

websiteUrl (URI)

A URL pointing to the user's public website/blog.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserBlockedEvent\n

\n

Represents auser_blockedevent on a given user.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

blockDuration (UserBlockDuration!)

Number of days that the user was blocked for.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (User)

The user who was blocked.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserContentEdit\n

\n

An edit on user content.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

deletedAt (DateTime)

Identifies the date and time when the object was deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

deletedBy (Actor)

The actor who deleted this content.

\n\n\n\n\n\n\n\n\n\n\n\n

diff (String)

A summary of the changes for this edit.

\n\n\n\n\n\n\n\n\n\n\n\n

editedAt (DateTime!)

When this content was edited.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited this content.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserContentEditConnection\n

\n

A list of edits to content.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserContentEditEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([UserContentEdit])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserContentEditEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (UserContentEdit)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserEdge\n

\n

Represents a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserEmailMetadata\n

\n

Email attributes from External Identity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

primary (Boolean)

Boolean to identify primary emails.

\n\n\n\n\n\n\n\n\n\n\n\n

type (String)

Type of email.

\n\n\n\n\n\n\n\n\n\n\n\n

value (String!)

Email id.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserStatus\n

\n

The user's description of what they're currently doing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

emoji (String)

An emoji summarizing the user's status.

\n\n\n\n\n\n\n\n\n\n\n\n

emojiHTML (HTML)

The status emoji as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

expiresAt (DateTime)

If set, the status will not be shown after this date.

\n\n\n\n\n\n\n\n\n\n\n\n

id (ID!)

ID of the object.

\n\n\n\n\n\n\n\n\n\n\n\n

indicatesLimitedAvailability (Boolean!)

Whether this status indicates the user is not fully available on GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

message (String)

A brief message describing what the user is doing.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The organization whose members can see this status. If null, this status is publicly visible.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who has this status.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserStatusConnection\n

\n

The connection type for UserStatus.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserStatusEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([UserStatus])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserStatusEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (UserStatus)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ViewerHovercardContext\n

\n

A hovercard context with a message describing how the viewer is related.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

viewer (User!)

Identifies the user who is related to this context.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n", + "html": "
\n
\n

\n ActorLocation\n

\n

Location information for an actor.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

city (String)

City.

\n\n\n\n\n\n\n\n\n\n\n\n

country (String)

Country name.

\n\n\n\n\n\n\n\n\n\n\n\n

countryCode (String)

Country code.

\n\n\n\n\n\n\n\n\n\n\n\n

region (String)

Region name.

\n\n\n\n\n\n\n\n\n\n\n\n

regionCode (String)

Region or state code.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n AddedToProjectEvent\n

\n

Represents aadded_to_projectevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Project referenced by event.

\n\n\n\n\n
\n

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

Project card referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectColumnName (String!)

Column name referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n App\n

\n

A GitHub App.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description of the app.

\n\n\n\n\n\n\n\n\n\n\n\n

logoBackgroundColor (String!)

The hex color code, without the leading '#', for the logo background.

\n\n\n\n\n\n\n\n\n\n\n\n

logoUrl (URI!)

A URL pointing to the app's logo.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting image.

\n\n
\n\n
\n\n\n

name (String!)

The name of the app.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

A slug based on the name of the app for use in URLs.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The URL to the app's homepage.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n AssignedEvent\n

\n

Represents anassignedevent on any assignable object.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

assignable (Assignable!)

Identifies the assignable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n

assignee (Assignee)

Identifies the user or mannequin that was assigned.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

Identifies the user who was assigned.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

user is deprecated.

Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n AutomaticBaseChangeFailedEvent\n

\n

Represents aautomatic_base_change_failedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

newBase (String!)

The new base for this PR.

\n\n\n\n\n\n\n\n\n\n\n\n

oldBase (String!)

The old base for this PR.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n AutomaticBaseChangeSucceededEvent\n

\n

Represents aautomatic_base_change_succeededevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

newBase (String!)

The new base for this PR.

\n\n\n\n\n\n\n\n\n\n\n\n

oldBase (String!)

The old base for this PR.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BaseRefChangedEvent\n

\n

Represents abase_ref_changedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

currentRefName (String!)

Identifies the name of the base ref for the pull request after it was changed.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

previousRefName (String!)

Identifies the name of the base ref for the pull request before it was changed.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BaseRefDeletedEvent\n

\n

Represents abase_ref_deletedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRefName (String)

Identifies the name of the Ref associated with the base_ref_deleted event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BaseRefForcePushedEvent\n

\n

Represents abase_ref_force_pushedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

afterCommit (Commit)

Identifies the after commit SHA for thebase_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

beforeCommit (Commit)

Identifies the before commit SHA for thebase_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Identifies the fully qualified ref name for thebase_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Blame\n

\n

Represents a Git blame.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

ranges ([BlameRange!]!)

The list of ranges from a Git blame.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BlameRange\n

\n

Represents a range of information from a Git blame.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

age (Int!)

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's change.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit!)

Identifies the line author.

\n\n\n\n\n\n\n\n\n\n\n\n

endingLine (Int!)

The ending line for the range.

\n\n\n\n\n\n\n\n\n\n\n\n

startingLine (Int!)

The starting line for the range.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Blob\n

\n

Represents a Git blob.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

byteSize (Int!)

Byte size of Blob object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitResourcePath (URI!)

The HTTP path for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitUrl (URI!)

The HTTP URL for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

isBinary (Boolean)

Indicates whether the Blob is binary or text. Returns null if unable to determine the encoding.

\n\n\n\n\n\n\n\n\n\n\n\n

isTruncated (Boolean!)

Indicates whether the contents is truncated.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

The Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the Git object belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

text (String)

UTF8 text data or null if the Blob is binary.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Bot\n

\n

A special type of user which takes actions on behalf of GitHub Apps.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the GitHub App's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The username of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this bot.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this bot.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BranchProtectionRule\n

\n

A branch protection rule.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allowsDeletions (Boolean!)

Can this branch be deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

allowsForcePushes (Boolean!)

Are force pushes allowed on this branch.

\n\n\n\n\n\n\n\n\n\n\n\n

branchProtectionRuleConflicts (BranchProtectionRuleConflictConnection!)

A list of conflicts matching branches protection rule and other branch protection rules.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

creator (Actor)

The actor who created this branch protection rule.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissesStaleReviews (Boolean!)

Will new commits pushed to matching branches dismiss pull request review approvals.

\n\n\n\n\n\n\n\n\n\n\n\n

isAdminEnforced (Boolean!)

Can admins overwrite branch protection.

\n\n\n\n\n\n\n\n\n\n\n\n

matchingRefs (RefConnection!)

Repository refs that are protected by this rule.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters refs with query on name.

\n\n
\n\n
\n\n\n

pattern (String!)

Identifies the protection rule pattern.

\n\n\n\n\n\n\n\n\n\n\n\n

pushAllowances (PushAllowanceConnection!)

A list push allowances for this branch protection rule.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

repository (Repository)

The repository associated with this branch protection rule.

\n\n\n\n\n\n\n\n\n\n\n\n

requiredApprovingReviewCount (Int)

Number of approving reviews required to update matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiredStatusCheckContexts ([String])

List of required status check contexts that must pass for commits to be accepted to matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresApprovingReviews (Boolean!)

Are approving reviews required to update matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresCodeOwnerReviews (Boolean!)

Are reviews from code owners required to update matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresCommitSignatures (Boolean!)

Are commits required to be signed.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresLinearHistory (Boolean!)

Are merge commits prohibited from being pushed to this branch.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresStatusChecks (Boolean!)

Are status checks required to update matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresStrictStatusChecks (Boolean!)

Are branches required to be up to date before merging.

\n\n\n\n\n\n\n\n\n\n\n\n

restrictsPushes (Boolean!)

Is pushing to matching branches restricted.

\n\n\n\n\n\n\n\n\n\n\n\n

restrictsReviewDismissals (Boolean!)

Is dismissal of pull request reviews restricted.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewDismissalAllowances (ReviewDismissalAllowanceConnection!)

A list review dismissal allowances for this branch protection rule.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BranchProtectionRuleConflict\n

\n

A conflict between two branch protection rules.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branchProtectionRule (BranchProtectionRule)

Identifies the branch protection rule.

\n\n\n\n\n\n\n\n\n\n\n\n

conflictingBranchProtectionRule (BranchProtectionRule)

Identifies the conflicting branch protection rule.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Identifies the branch ref that has conflicting rules.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BranchProtectionRuleConflictConnection\n

\n

The connection type for BranchProtectionRuleConflict.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([BranchProtectionRuleConflictEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([BranchProtectionRuleConflict])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BranchProtectionRuleConflictEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (BranchProtectionRuleConflict)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BranchProtectionRuleConnection\n

\n

The connection type for BranchProtectionRule.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([BranchProtectionRuleEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([BranchProtectionRule])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n BranchProtectionRuleEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (BranchProtectionRule)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckAnnotation\n

\n

A single check annotation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

annotationLevel (CheckAnnotationLevel)

The annotation's severity level.

\n\n\n\n\n\n\n\n\n\n\n\n

blobUrl (URI!)

The path to the file that this annotation was made on.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

location (CheckAnnotationSpan!)

The position of this annotation.

\n\n\n\n\n\n\n\n\n\n\n\n

message (String!)

The annotation's message.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path that this annotation was made on.

\n\n\n\n\n\n\n\n\n\n\n\n

rawDetails (String)

Additional information about the annotation.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String)

The annotation's title.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckAnnotationConnection\n

\n

The connection type for CheckAnnotation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CheckAnnotationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CheckAnnotation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckAnnotationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CheckAnnotation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckAnnotationPosition\n

\n

A character position in a check annotation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

column (Int)

Column number (1 indexed).

\n\n\n\n\n\n\n\n\n\n\n\n

line (Int!)

Line number (1 indexed).

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckAnnotationSpan\n

\n

An inclusive pair of positions for a check annotation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

end (CheckAnnotationPosition!)

End position (inclusive).

\n\n\n\n\n\n\n\n\n\n\n\n

start (CheckAnnotationPosition!)

Start position (inclusive).

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckRun\n

\n

A check run.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

annotations (CheckAnnotationConnection)

The check run's annotations.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

checkSuite (CheckSuite!)

The check suite that this run is a part of.

\n\n\n\n\n\n\n\n\n\n\n\n

completedAt (DateTime)

Identifies the date and time when the check run was completed.

\n\n\n\n\n\n\n\n\n\n\n\n

conclusion (CheckConclusionState)

The conclusion of the check run.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

detailsUrl (URI)

The URL from which to find full details of the check run on the integrator's site.

\n\n\n\n\n\n\n\n\n\n\n\n

externalId (String)

A reference for the check run on the integrator's system.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the check for this check run.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI!)

The permalink to the check run summary.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this check run.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this check run.

\n\n\n\n\n\n\n\n\n\n\n\n

startedAt (DateTime)

Identifies the date and time when the check run was started.

\n\n\n\n\n\n\n\n\n\n\n\n

status (CheckStatusState!)

The current status of the check run.

\n\n\n\n\n\n\n\n\n\n\n\n

summary (String)

A string representing the check run's summary.

\n\n\n\n\n\n\n\n\n\n\n\n

text (String)

A string representing the check run's text.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String)

A string representing the check run.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this check run.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckRunConnection\n

\n

The connection type for CheckRun.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CheckRunEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CheckRun])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckRunEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CheckRun)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckSuite\n

\n

A check suite.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

app (App)

The GitHub App which created this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

branch (Ref)

The name of the branch for this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

checkRuns (CheckRunConnection)

The check runs associated with a check suite.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (CheckRunFilter)

\n

Filters the check runs by this type.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit!)

The commit for this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

conclusion (CheckConclusionState)

The conclusion of this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

matchingPullRequests (PullRequestConnection)

A list of open pull requests matching the check suite.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

push (Push)

The push that triggered this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

status (CheckStatusState!)

The status of this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this check suite.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckSuiteConnection\n

\n

The connection type for CheckSuite.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CheckSuiteEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CheckSuite])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CheckSuiteEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CheckSuite)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ClosedEvent\n

\n

Represents aclosedevent on any Closable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

closable (Closable!)

Object that was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

closer (Closer)

Object which triggered the creation of this event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this closed event.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this closed event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CodeOfConduct\n

\n

The Code of Conduct for a repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String)

The body of the Code of Conduct.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The key for the Code of Conduct.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The formal name of the Code of Conduct.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI)

The HTTP path for this Code of Conduct.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI)

The HTTP URL for this Code of Conduct.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommentDeletedEvent\n

\n

Represents acomment_deletedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

deletedCommentAuthor (Actor)

The user who authored the deleted comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Commit\n

\n

Represents a Git commit.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

additions (Int!)

The number of additions in this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

associatedPullRequests (PullRequestConnection)

The pull requests associated with a commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (PullRequestOrder)

\n

Ordering options for pull requests.

\n\n
\n\n
\n\n\n

author (GitActor)

Authorship details of the commit.

\n\n\n\n\n\n\n\n\n\n\n\n

authoredByCommitter (Boolean!)

Check if the committer and the author match.

\n\n\n\n\n\n\n\n\n\n\n\n

authoredDate (DateTime!)

The datetime when this commit was authored.

\n\n\n\n\n\n\n\n\n\n\n\n

authors (GitActorConnection!)

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.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

blame (Blame!)

Fetches git blame information.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

path (String!)

\n

The file whose Git blame information you want.

\n\n
\n\n
\n\n\n

changedFiles (Int!)

The number of changed files in this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

checkSuites (CheckSuiteConnection)

The check suites associated with a commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (CheckSuiteFilter)

\n

Filters the check suites by this type.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

comments (CommitCommentConnection!)

Comments made on the commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commitResourcePath (URI!)

The HTTP path for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitUrl (URI!)

The HTTP URL for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

committedDate (DateTime!)

The datetime when this commit was committed.

\n\n\n\n\n\n\n\n\n\n\n\n

committedViaWeb (Boolean!)

Check if commited via GitHub web UI.

\n\n\n\n\n\n\n\n\n\n\n\n

committer (GitActor)

Committership details of the commit.

\n\n\n\n\n\n\n\n\n\n\n\n

deletions (Int!)

The number of deletions in this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

deployments (DeploymentConnection)

The deployments associated with a commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

environments ([String!])

\n

Environments to list deployments for.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (DeploymentOrder)

\n

Ordering options for deployments returned from the connection.

\n\n
\n\n
\n\n\n

file (TreeEntry)

The tree entry representing the file located at the given path.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

path (String!)

\n

The path for the file.

\n\n
\n\n
\n\n\n

history (CommitHistoryConnection!)

The linear commit history starting from (and including) this commit, in the same order as git log.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

author (CommitAuthor)

\n

If non-null, filters history to only show commits with matching authorship.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

path (String)

\n

If non-null, filters history to only show commits touching files under this path.

\n\n
\n\n
\n

since (GitTimestamp)

\n

Allows specifying a beginning time or date for fetching commits.

\n\n
\n\n
\n

until (GitTimestamp)

\n

Allows specifying an ending time or date for fetching commits.

\n\n
\n\n
\n\n\n

message (String!)

The Git commit message.

\n\n\n\n\n\n\n\n\n\n\n\n

messageBody (String!)

The Git commit message body.

\n\n\n\n\n\n\n\n\n\n\n\n

messageBodyHTML (HTML!)

The commit message body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

messageHeadline (String!)

The Git commit message headline.

\n\n\n\n\n\n\n\n\n\n\n\n

messageHeadlineHTML (HTML!)

The commit message headline rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

The Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

onBehalfOf (Organization)

The organization this commit was made on behalf of.

\n\n\n\n\n\n\n\n\n\n\n\n

parents (CommitConnection!)

The parents of a commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

pushedDate (DateTime)

The datetime when this commit was pushed.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository this commit belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (GitSignature)

Commit signing information, if present.

\n\n\n\n\n\n\n\n\n\n\n\n

status (Status)

Status information for this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

statusCheckRollup (StatusCheckRollup)

Check and Status rollup information for this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

submodules (SubmoduleConnection!)

Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

tarballUrl (URI!)

Returns a URL to download a tarball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

\n\n\n\n\n\n\n\n\n\n\n\n

tree (Tree!)

Commit's root Tree.

\n\n\n\n\n\n\n\n\n\n\n\n

treeResourcePath (URI!)

The HTTP path for the tree of this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

treeUrl (URI!)

The HTTP URL for the tree of this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n

zipballUrl (URI!)

Returns a URL to download a zipball archive for a repository.\nNote: For private repositories, these links are temporary and expire after five minutes.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitComment\n

\n

Represents a comment on a given Commit.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the comment body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with the comment, if the commit exists.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String)

Identifies the file path associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

position (Int)

Identifies the line position associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path permalink for this commit comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL permalink for this commit comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitCommentConnection\n

\n

The connection type for CommitComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CommitCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CommitComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CommitComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitCommentThread\n

\n

A thread of comments on a commit.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (CommitCommentConnection!)

The comments that exist in this thread.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit)

The commit the comments were made on.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String)

The file the comments were made on.

\n\n\n\n\n\n\n\n\n\n\n\n

position (Int)

The position in the diff for the commit that the comment was made on.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitConnection\n

\n

The connection type for Commit.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CommitEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Commit])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitContributionsByRepository\n

\n

This aggregates commits made by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedCommitContributionConnection!)

The commit contributions, each representing a day.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (CommitContributionOrder)

\n

Ordering options for commit contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the commits were made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for the user's commits to the repository in this time range.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for the user's commits to the repository in this time range.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Commit)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CommitHistoryConnection\n

\n

The connection type for Commit.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CommitEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Commit])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ConnectedEvent\n

\n

Represents aconnectedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Reference originated in a different repository.

\n\n\n\n\n\n\n\n\n\n\n\n

source (ReferencedSubject!)

Issue or pull request that made the reference.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (ReferencedSubject!)

Issue or pull request which was connected.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContentAttachment\n

\n

A content attachment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String!)

The body text of the content attachment. This parameter supports markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

contentReference (ContentReference!)

The content reference that the content attachment is attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int!)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

The title of the content attachment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContentReference\n

\n

A content reference.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

databaseId (Int!)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

reference (String!)

The reference of the content reference.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContributionCalendar\n

\n

A calendar of contributions made on GitHub by a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

colors ([String!]!)

A list of hex color codes used in this calendar. The darker the color, the more contributions it represents.

\n\n\n\n\n\n\n\n\n\n\n\n

isHalloween (Boolean!)

Determine if the color set was chosen because it's currently Halloween.

\n\n\n\n\n\n\n\n\n\n\n\n

months ([ContributionCalendarMonth!]!)

A list of the months of contributions in this calendar.

\n\n\n\n\n\n\n\n\n\n\n\n

totalContributions (Int!)

The count of total contributions in the calendar.

\n\n\n\n\n\n\n\n\n\n\n\n

weeks ([ContributionCalendarWeek!]!)

A list of the weeks of contributions in this calendar.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContributionCalendarDay\n

\n

Represents a single day of contributions on GitHub by a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

color (String!)

The hex color code that represents how many contributions were made on this day compared to others in the calendar.

\n\n\n\n\n\n\n\n\n\n\n\n

contributionCount (Int!)

How many contributions were made by the user on this day.

\n\n\n\n\n\n\n\n\n\n\n\n

date (Date!)

The day this square represents.

\n\n\n\n\n\n\n\n\n\n\n\n

weekday (Int!)

A number representing which day of the week this square represents, e.g., 1 is Monday.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContributionCalendarMonth\n

\n

A month of contributions in a user's contribution graph.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

firstDay (Date!)

The date of the first day of this month.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the month.

\n\n\n\n\n\n\n\n\n\n\n\n

totalWeeks (Int!)

How many weeks started in this month.

\n\n\n\n\n\n\n\n\n\n\n\n

year (Int!)

The year the month occurred in.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContributionCalendarWeek\n

\n

A week of contributions in a user's contribution graph.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributionDays ([ContributionCalendarDay!]!)

The days of contributions in this week.

\n\n\n\n\n\n\n\n\n\n\n\n

firstDay (Date!)

The date of the earliest square in this week.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ContributionsCollection\n

\n

A contributions collection aggregates contributions such as opened issues and commits created by a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commitContributionsByRepository ([CommitContributionsByRepository!]!)

Commit contributions made by the user, grouped by repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

\n
\n\n
\n\n\n

contributionCalendar (ContributionCalendar!)

A calendar of this user's contributions on GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

contributionYears ([Int!]!)

The years the user has been making contributions with the most recent year first.

\n\n\n\n\n\n\n\n\n\n\n\n

doesEndInCurrentMonth (Boolean!)

Determine if this collection's time span ends in the current month.

\n\n\n\n\n\n\n\n\n\n\n\n

earliestRestrictedContributionDate (Date)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

endedAt (DateTime!)

The ending date and time of this collection.

\n\n\n\n\n\n\n\n\n\n\n\n

firstIssueContribution (CreatedIssueOrRestrictedContribution)

The first issue the user opened on GitHub. This will be null if that issue was\nopened outside the collection'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.

\n\n\n\n\n\n\n\n\n\n\n\n

firstPullRequestContribution (CreatedPullRequestOrRestrictedContribution)

The first pull request the user opened on GitHub. This will be null if that\npull request was opened outside the collection'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.

\n\n\n\n\n\n\n\n\n\n\n\n

firstRepositoryContribution (CreatedRepositoryOrRestrictedContribution)

The first repository the user created on GitHub. This will be null if that\nfirst repository was created outside the collection's time range and\nignoreTimeRange is false. If the repository is not visible, then a\nRestrictedContribution is returned.

\n\n\n\n\n\n\n\n\n\n\n\n

hasActivityInThePast (Boolean!)

Does the user have any more activity in the timeline that occurred prior to the collection's time range?.

\n\n\n\n\n\n\n\n\n\n\n\n

hasAnyContributions (Boolean!)

Determine if there are any contributions in this collection.

\n\n\n\n\n\n\n\n\n\n\n\n

hasAnyRestrictedContributions (Boolean!)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

isSingleDay (Boolean!)

Whether or not the collector's time span is all within the same day.

\n\n\n\n\n\n\n\n\n\n\n\n

issueContributions (CreatedIssueContributionConnection!)

A list of issues the user opened.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

issueContributionsByRepository ([IssueContributionsByRepository!]!)

Issue contributions made by the user, grouped by repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

\n
\n\n
\n\n\n

joinedGitHubContribution (JoinedGitHubContribution)

When the user signed up for GitHub. This will be null if that sign up date\nfalls outside the collection's time range and ignoreTimeRange is false.

\n\n\n\n\n\n\n\n\n\n\n\n

latestRestrictedContributionDate (Date)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

mostRecentCollectionWithActivity (ContributionsCollection)

When this collection'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.

\n\n\n\n\n\n\n\n\n\n\n\n

mostRecentCollectionWithoutActivity (ContributionsCollection)

Returns a different contributions collection from an earlier time range than this one\nthat does not have any contributions.

\n\n\n\n\n\n\n\n\n\n\n\n

popularIssueContribution (CreatedIssueContribution)

The issue the user opened on GitHub that received the most comments in the specified\ntime frame.

\n\n\n\n\n\n\n\n\n\n\n\n

popularPullRequestContribution (CreatedPullRequestContribution)

The pull request the user opened on GitHub that received the most comments in the\nspecified time frame.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequestContributions (CreatedPullRequestContributionConnection!)

Pull request contributions made by the user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

pullRequestContributionsByRepository ([PullRequestContributionsByRepository!]!)

Pull request contributions made by the user, grouped by repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

\n
\n\n
\n\n\n

pullRequestReviewContributions (CreatedPullRequestReviewContributionConnection!)

Pull request review contributions made by the user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

pullRequestReviewContributionsByRepository ([PullRequestReviewContributionsByRepository!]!)

Pull request review contributions made by the user, grouped by repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

maxRepositories (Int)

\n

How many repositories should be included.

\n

The default value is 25.

\n
\n\n
\n\n\n

repositoryContributions (CreatedRepositoryContributionConnection!)

A list of repositories owned by the user that the user created in this time range.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first repository ever be excluded from the result.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

restrictedContributionsCount (Int!)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

startedAt (DateTime!)

The beginning date and time of this collection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCommitContributions (Int!)

How many commits were made by the user in this time span.

\n\n\n\n\n\n\n\n\n\n\n\n

totalIssueContributions (Int!)

How many issues the user opened.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from this count.

\n

The default value is false.

\n
\n\n
\n\n\n

totalPullRequestContributions (Int!)

How many pull requests the user opened.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from this count.

\n

The default value is false.

\n
\n\n
\n\n\n

totalPullRequestReviewContributions (Int!)

How many pull request reviews the user left.

\n\n\n\n\n\n\n\n\n\n\n\n

totalRepositoriesWithContributedCommits (Int!)

How many different repositories the user committed to.

\n\n\n\n\n\n\n\n\n\n\n\n

totalRepositoriesWithContributedIssues (Int!)

How many different repositories the user opened issues in.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first issue ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented issue be excluded from this count.

\n

The default value is false.

\n
\n\n
\n\n\n

totalRepositoriesWithContributedPullRequestReviews (Int!)

How many different repositories the user left pull request reviews in.

\n\n\n\n\n\n\n\n\n\n\n\n

totalRepositoriesWithContributedPullRequests (Int!)

How many different repositories the user opened pull requests in.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first pull request ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n

excludePopular (Boolean)

\n

Should the user's most commented pull request be excluded from this count.

\n

The default value is false.

\n
\n\n
\n\n\n

totalRepositoryContributions (Int!)

How many repositories the user created.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

excludeFirst (Boolean)

\n

Should the user's first repository ever be excluded from this count.

\n

The default value is false.

\n
\n\n
\n\n\n

user (User!)

The user who made the contributions in this collection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ConvertToDraftEvent\n

\n

Represents aconvert_to_draftevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this convert to draft event.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this convert to draft event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ConvertedNoteToIssueEvent\n

\n

Represents aconverted_note_to_issueevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Project referenced by event.

\n\n\n\n\n
\n

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

Project card referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectColumnName (String!)

Column name referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedCommitContribution\n

\n

Represents the contribution a user made by committing to a repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commitCount (Int!)

How many commits were made on this day to this repository by the user.

\n\n\n\n\n\n\n\n\n\n\n\n

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository the user made a commit in.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedCommitContributionConnection\n

\n

The connection type for CreatedCommitContribution.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CreatedCommitContributionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CreatedCommitContribution])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of commits across days and repositories in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedCommitContributionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CreatedCommitContribution)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedIssueContribution\n

\n

Represents the contribution a user made on GitHub by opening an issue.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

The issue that was opened.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedIssueContributionConnection\n

\n

The connection type for CreatedIssueContribution.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CreatedIssueContributionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CreatedIssueContribution])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedIssueContributionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CreatedIssueContribution)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedPullRequestContribution\n

\n

Represents the contribution a user made on GitHub by opening a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request that was opened.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedPullRequestContributionConnection\n

\n

The connection type for CreatedPullRequestContribution.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CreatedPullRequestContributionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CreatedPullRequestContribution])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedPullRequestContributionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CreatedPullRequestContribution)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedPullRequestReviewContribution\n

\n

Represents the contribution a user made by leaving a review on a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request the user reviewed.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview!)

The review the user left on the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository containing the pull request that the user reviewed.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedPullRequestReviewContributionConnection\n

\n

The connection type for CreatedPullRequestReviewContribution.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CreatedPullRequestReviewContributionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CreatedPullRequestReviewContribution])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedPullRequestReviewContributionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CreatedPullRequestReviewContribution)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedRepositoryContribution\n

\n

Represents the contribution a user made on GitHub by creating a repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository that was created.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedRepositoryContributionConnection\n

\n

The connection type for CreatedRepositoryContribution.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([CreatedRepositoryContributionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([CreatedRepositoryContribution])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CreatedRepositoryContributionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (CreatedRepositoryContribution)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n CrossReferencedEvent\n

\n

Represents a mention made by one issue or pull request to another.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Reference originated in a different repository.

\n\n\n\n\n\n\n\n\n\n\n\n

referencedAt (DateTime!)

Identifies when the reference was made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

source (ReferencedSubject!)

Issue or pull request that made the reference.

\n\n\n\n\n\n\n\n\n\n\n\n

target (ReferencedSubject!)

Issue or pull request to which the reference was made.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

willCloseTarget (Boolean!)

Checks if the target will be closed when the source is merged.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DemilestonedEvent\n

\n

Represents ademilestonedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

milestoneTitle (String!)

Identifies the milestone title associated with thedemilestonedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (MilestoneItem!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DependencyGraphDependency\n

\n

A dependency manifest entry.

\n
\n\n
\n \n
\n

Preview notice

\n

DependencyGraphDependency is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

hasDependencies (Boolean!)

Does the dependency itself have dependencies?.

\n\n\n\n\n\n\n\n\n\n\n\n

packageManager (String)

The dependency package manager.

\n\n\n\n\n\n\n\n\n\n\n\n

packageName (String!)

The required package name.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository containing the package.

\n\n\n\n\n\n\n\n\n\n\n\n

requirements (String!)

The dependency version requirements.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DependencyGraphDependencyConnection\n

\n

The connection type for DependencyGraphDependency.

\n
\n\n
\n \n
\n

Preview notice

\n

DependencyGraphDependencyConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([DependencyGraphDependencyEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([DependencyGraphDependency])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DependencyGraphDependencyEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n
\n

Preview notice

\n

DependencyGraphDependencyEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (DependencyGraphDependency)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DependencyGraphManifest\n

\n

Dependency manifest for a repository.

\n
\n\n
\n \n
\n

Preview notice

\n

DependencyGraphManifest is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

blobPath (String!)

Path to view the manifest file blob.

\n\n\n\n\n\n\n\n\n\n\n\n

dependencies (DependencyGraphDependencyConnection)

A list of manifest dependencies.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

dependenciesCount (Int)

The number of dependencies listed in the manifest.

\n\n\n\n\n\n\n\n\n\n\n\n

exceedsMaxSize (Boolean!)

Is the manifest too big to parse?.

\n\n\n\n\n\n\n\n\n\n\n\n

filename (String!)

Fully qualified manifest filename.

\n\n\n\n\n\n\n\n\n\n\n\n

parseable (Boolean!)

Were we able to parse the manifest?.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository containing the manifest.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DependencyGraphManifestConnection\n

\n

The connection type for DependencyGraphManifest.

\n
\n\n
\n \n
\n

Preview notice

\n

DependencyGraphManifestConnection is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([DependencyGraphManifestEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([DependencyGraphManifest])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DependencyGraphManifestEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n
\n

Preview notice

\n

DependencyGraphManifestEdge is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (DependencyGraphManifest)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeployKey\n

\n

A repository deploy key.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The deploy key.

\n\n\n\n\n\n\n\n\n\n\n\n

readOnly (Boolean!)

Whether or not the deploy key is read only.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

The deploy key title.

\n\n\n\n\n\n\n\n\n\n\n\n

verified (Boolean!)

Whether or not the deploy key has been verified.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeployKeyConnection\n

\n

The connection type for DeployKey.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([DeployKeyEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([DeployKey])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeployKeyEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (DeployKey)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeployedEvent\n

\n

Represents adeployedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

deployment (Deployment!)

The deployment associated with thedeployedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

The ref associated with thedeployedevent.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Deployment\n

\n

Represents triggered deployment instance.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commit (Commit)

Identifies the commit sha of the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

commitOid (String!)

Identifies the oid of the deployment commit, even if the commit has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor!)

Identifies the actor who triggered the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The deployment description.

\n\n\n\n\n\n\n\n\n\n\n\n

environment (String)

The latest environment to which this deployment was made.

\n\n\n\n\n\n\n\n\n\n\n\n

latestEnvironment (String)

The latest environment to which this deployment was made.

\n\n\n\n\n\n\n\n\n\n\n\n

latestStatus (DeploymentStatus)

The latest status of this deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

originalEnvironment (String)

The original environment to which this deployment was made.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String)

Extra information that a deployment system might need.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Identifies the Ref of the deployment, if the deployment was created by ref.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

Identifies the repository associated with the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

state (DeploymentState)

The current state of the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

statuses (DeploymentStatusConnection)

A list of statuses associated with the deployment.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

task (String)

The deployment task.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeploymentConnection\n

\n

The connection type for Deployment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([DeploymentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Deployment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeploymentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Deployment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeploymentEnvironmentChangedEvent\n

\n

Represents adeployment_environment_changedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

deploymentStatus (DeploymentStatus!)

The deployment status that updated the deployment environment.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeploymentStatus\n

\n

Describes the status of a given deployment attempt.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor!)

Identifies the actor who triggered the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

deployment (Deployment!)

Identifies the deployment associated with status.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

Identifies the description of the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

environment (String)

Identifies the environment of the deployment at the time of this deployment status.

\n\n\n\n\n
\n

Preview notice

\n

environment is available under the Deployments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

environmentUrl (URI)

Identifies the environment URL of the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

logUrl (URI)

Identifies the log URL of the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

state (DeploymentStatusState!)

Identifies the current state of the deployment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeploymentStatusConnection\n

\n

The connection type for DeploymentStatus.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([DeploymentStatusEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([DeploymentStatus])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DeploymentStatusEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (DeploymentStatus)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n DisconnectedEvent\n

\n

Represents adisconnectedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Reference originated in a different repository.

\n\n\n\n\n\n\n\n\n\n\n\n

source (ReferencedSubject!)

Issue or pull request from which the issue was disconnected.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (ReferencedSubject!)

Issue or pull request which was disconnected.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Enterprise\n

\n

An account to manage multiple organizations with consolidated policy and billing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the enterprise's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

billingInfo (EnterpriseBillingInfo)

Enterprise billing information visible to enterprise billing managers.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML!)

The description of the enterprise as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

location (String)

The location of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

members (EnterpriseMemberConnection!)

A list of users who are members of this enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

deployment (EnterpriseUserDeployment)

\n

Only return members within the selected GitHub Enterprise deployment.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseMemberOrder)

\n

Ordering options for members returned from the connection.

\n\n
\n\n
\n

organizationLogins ([String!])

\n

Only return members within the organizations with these logins.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseUserAccountMembershipRole)

\n

The role of the user in the enterprise organization or server.

\n\n
\n\n
\n\n\n

name (String!)

The name of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

organizations (OrganizationConnection!)

A list of organizations that belong to this enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

ownerInfo (EnterpriseOwnerInfo)

Enterprise information only visible to enterprise owners.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The URL-friendly identifier for the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

userAccounts (EnterpriseUserAccountConnection!)

A list of user accounts on this enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerIsAdmin (Boolean!)

Is the current viewer an admin of this enterprise?.

\n\n\n\n\n\n\n\n\n\n\n\n

websiteUrl (URI)

The URL of the enterprise website.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseAdministratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseAdministratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseAdministratorEdge\n

\n

A User who is an administrator of an enterprise.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole!)

The role of the administrator.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseAdministratorInvitation\n

\n

An invitation for a user to become an owner or billing manager of an enterprise.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email of the person who was invited to the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise!)

The enterprise the invitation is for.

\n\n\n\n\n\n\n\n\n\n\n\n

invitee (User)

The user who was invited to the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

inviter (User)

The user who created the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

role (EnterpriseAdministratorRole!)

The invitee's pending role in the enterprise (owner or billing_manager).

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseAdministratorInvitationConnection\n

\n

The connection type for EnterpriseAdministratorInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseAdministratorInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseAdministratorInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseAdministratorInvitationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseAdministratorInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseBillingInfo\n

\n

Enterprise billing information visible to enterprise billing managers and owners.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allLicensableUsersCount (Int!)

The number of licenseable users/emails across the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

assetPacks (Int!)

The number of data packs used by all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

availableSeats (Int!)

The number of available seats across all owned organizations based on the unique number of billable users.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

availableSeats is deprecated.

availableSeats will be replaced with totalAvailableLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalAvailableLicenses instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n

bandwidthQuota (Float!)

The bandwidth quota in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

bandwidthUsage (Float!)

The bandwidth usage in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

bandwidthUsagePercentage (Int!)

The bandwidth usage as a percentage of the bandwidth quota.

\n\n\n\n\n\n\n\n\n\n\n\n

seats (Int!)

The total seats across all organizations owned by the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

seats is deprecated.

seats will be replaced with totalLicenses to provide more clarity on the value being returned Use EnterpriseBillingInfo.totalLicenses instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n

storageQuota (Float!)

The storage quota in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

storageUsage (Float!)

The storage usage in GB for all organizations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

storageUsagePercentage (Int!)

The storage usage as a percentage of the storage quota.

\n\n\n\n\n\n\n\n\n\n\n\n

totalAvailableLicenses (Int!)

The number of available licenses across all owned organizations based on the unique number of billable users.

\n\n\n\n\n\n\n\n\n\n\n\n

totalLicenses (Int!)

The total number of licenses allocated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseIdentityProvider\n

\n

An identity provider configured to provision identities for an enterprise.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

digestMethod (SamlDigestAlgorithm)

The digest algorithm used to sign SAML requests for the identity provider.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise)

The enterprise this identity provider belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

externalIdentities (ExternalIdentityConnection!)

ExternalIdentities provisioned by this identity provider.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

idpCertificate (X509Certificate)

The x509 certificate used by the identity provider to sign assertions and responses.

\n\n\n\n\n\n\n\n\n\n\n\n

issuer (String)

The Issuer Entity ID for the SAML identity provider.

\n\n\n\n\n\n\n\n\n\n\n\n

recoveryCodes ([String!])

Recovery codes that can be used by admins to access the enterprise if the identity provider is unavailable.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethod (SamlSignatureAlgorithm)

The signature algorithm used to sign SAML requests for the identity provider.

\n\n\n\n\n\n\n\n\n\n\n\n

ssoUrl (URI)

The URL endpoint for the identity provider's SAML SSO.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseMemberConnection\n

\n

The connection type for EnterpriseMember.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseMemberEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseMember])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseMemberEdge\n

\n

A User who is a member of an enterprise through one or more organizations.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the user does not have a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All members consume a license Removal on 2021-01-01 UTC.

\n
\n\n\n\n\n\n\n

node (EnterpriseMember)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOrganizationMembershipConnection\n

\n

The connection type for Organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseOrganizationMembershipEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Organization])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOrganizationMembershipEdge\n

\n

An enterprise organization that a user is a member of.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Organization)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

role (EnterpriseUserAccountMembershipRole!)

The role of the user in the enterprise membership.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOutsideCollaboratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseOutsideCollaboratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOutsideCollaboratorEdge\n

\n

A User who is an outside collaborator of an enterprise through one or more organizations.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the outside collaborator does not have a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All outside collaborators consume a license Removal on 2021-01-01 UTC.

\n
\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (EnterpriseRepositoryInfoConnection!)

The enterprise organization repositories this user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseOwnerInfo\n

\n

Enterprise information only visible to enterprise owners.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

admins (EnterpriseAdministratorConnection!)

A list of all of the administrators for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseMemberOrder)

\n

Ordering options for administrators returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseAdministratorRole)

\n

The role to filter by.

\n\n
\n\n
\n\n\n

affiliatedUsersWithTwoFactorDisabled (UserConnection!)

A list of users in the enterprise who currently have two-factor authentication disabled.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

affiliatedUsersWithTwoFactorDisabledExist (Boolean!)

Whether or not affiliated users with two-factor authentication disabled exist in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

allowPrivateRepositoryForkingSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether private repository forking is enabled for repositories in organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

allowPrivateRepositoryForkingSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided private repository forking setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

defaultRepositoryPermissionSetting (EnterpriseDefaultRepositoryPermissionSettingValue!)

The setting value for base repository permissions for organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

defaultRepositoryPermissionSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided default repository permission.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (DefaultRepositoryPermissionField!)

\n

The permission to find organizations for.

\n\n
\n\n
\n\n\n

enterpriseServerInstallations (EnterpriseServerInstallationConnection!)

Enterprise Server installations owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

connectedOnly (Boolean)

\n

Whether or not to only return installations discovered via GitHub Connect.

\n

The default value is false.

\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerInstallationOrder)

\n

Ordering options for Enterprise Server installations returned.

\n\n
\n\n
\n\n\n

ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

The setting value for whether the enterprise has an IP allow list enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

ipAllowListEntries (IpAllowListEntryConnection!)

The IP addresses that are allowed to access resources owned by the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IpAllowListEntryOrder)

\n

Ordering options for IP allow list entries returned.

\n\n
\n\n
\n\n\n

isUpdatingDefaultRepositoryPermission (Boolean!)

Whether or not the default repository permission is currently being updated.

\n\n\n\n\n\n\n\n\n\n\n\n

isUpdatingTwoFactorRequirement (Boolean!)

Whether the two-factor authentication requirement is currently being enforced.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanChangeRepositoryVisibilitySetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether organization members with admin permissions on a\nrepository can change repository visibility.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanChangeRepositoryVisibilitySettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided can change repository visibility setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanCreateInternalRepositoriesSetting (Boolean)

The setting value for whether members of organizations in the enterprise can create internal repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreatePrivateRepositoriesSetting (Boolean)

The setting value for whether members of organizations in the enterprise can create private repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreatePublicRepositoriesSetting (Boolean)

The setting value for whether members of organizations in the enterprise can create public repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreateRepositoriesSetting (EnterpriseMembersCanCreateRepositoriesSettingValue)

The setting value for whether members of organizations in the enterprise can create repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanCreateRepositoriesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided repository creation setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (OrganizationMembersCanCreateRepositoriesSettingValue!)

\n

The setting to find organizations for.

\n\n
\n\n
\n\n\n

membersCanDeleteIssuesSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members with admin permissions for repositories can delete issues.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanDeleteIssuesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can delete issues setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanDeleteRepositoriesSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members with admin permissions for repositories can delete or transfer repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanDeleteRepositoriesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can delete repositories setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanInviteCollaboratorsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members of organizations in the enterprise can invite outside collaborators.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanInviteCollaboratorsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can invite collaborators setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanMakePurchasesSetting (EnterpriseMembersCanMakePurchasesSettingValue!)

Indicates whether members of this enterprise's organizations can purchase additional services for those organizations.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanUpdateProtectedBranchesSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members with admin permissions for repositories can update protected branches.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanUpdateProtectedBranchesSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can update protected branches setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

membersCanViewDependencyInsightsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether members can view dependency insights.

\n\n\n\n\n\n\n\n\n\n\n\n

membersCanViewDependencyInsightsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided members can view dependency insights setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

organizationProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether organization projects are enabled for organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationProjectsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided organization projects setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

outsideCollaborators (EnterpriseOutsideCollaboratorConnection!)

A list of outside collaborators across the repositories in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

login (String)

\n

The login of one specific outside collaborator.

\n\n
\n\n
\n

orderBy (EnterpriseMemberOrder)

\n

Ordering options for outside collaborators returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

visibility (RepositoryVisibility)

\n

Only return outside collaborators on repositories with this visibility.

\n\n
\n\n
\n\n\n

pendingAdminInvitations (EnterpriseAdministratorInvitationConnection!)

A list of pending administrator invitations for the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseAdministratorInvitationOrder)

\n

Ordering options for pending enterprise administrator invitations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseAdministratorRole)

\n

The role to filter by.

\n\n
\n\n
\n\n\n

pendingCollaboratorInvitations (RepositoryInvitationConnection!)

A list of pending collaborator invitations across the repositories in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryInvitationOrder)

\n

Ordering options for pending repository collaborator invitations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

pendingCollaborators (EnterprisePendingCollaboratorConnection!)

A list of pending collaborators across the repositories in the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

pendingCollaborators is deprecated.

Repository invitations can now be associated with an email, not only an invitee. Use the pendingCollaboratorInvitations field instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryInvitationOrder)

\n

Ordering options for pending repository collaborator invitations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

pendingMemberInvitations (EnterprisePendingMemberInvitationConnection!)

A list of pending member invitations for organizations in the enterprise.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

repositoryProjectsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether repository projects are enabled in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryProjectsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided repository projects setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

samlIdentityProvider (EnterpriseIdentityProvider)

The SAML Identity Provider for the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

samlIdentityProviderSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the SAML single sign-on setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (IdentityProviderConfigurationState!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

teamDiscussionsSetting (EnterpriseEnabledDisabledSettingValue!)

The setting value for whether team discussions are enabled for organizations in this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

teamDiscussionsSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the provided team discussions setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n

twoFactorRequiredSetting (EnterpriseEnabledSettingValue!)

The setting value for whether the enterprise requires two-factor authentication for its organizations and users.

\n\n\n\n\n\n\n\n\n\n\n\n

twoFactorRequiredSettingOrganizations (OrganizationConnection!)

A list of enterprise organizations configured with the two-factor authentication setting value.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations with this setting.

\n\n
\n\n
\n

value (Boolean!)

\n

The setting value to find organizations for.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingCollaboratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterprisePendingCollaboratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingCollaboratorEdge\n

\n

A user with an invitation to be a collaborator on a repository owned by an organization in an enterprise.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the invited collaborator does not have a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All pending collaborators consume a license Removal on 2021-01-01 UTC.

\n
\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (EnterpriseRepositoryInfoConnection!)

The enterprise organization repositories this user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingMemberInvitationConnection\n

\n

The connection type for OrganizationInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterprisePendingMemberInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([OrganizationInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalUniqueUserCount (Int!)

Identifies the total count of unique users in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterprisePendingMemberInvitationEdge\n

\n

An invitation to be a member in an enterprise organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnlicensed (Boolean!)

Whether the invitation has a license for the enterprise.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

isUnlicensed is deprecated.

All pending members consume a license Removal on 2020-07-01 UTC.

\n
\n\n\n\n\n\n\n

node (OrganizationInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseRepositoryInfo\n

\n

A subset of repository information queryable from an enterprise.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isPrivate (Boolean!)

Identifies if the repository is private.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The repository's name.

\n\n\n\n\n\n\n\n\n\n\n\n

nameWithOwner (String!)

The repository's name with owner.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseRepositoryInfoConnection\n

\n

The connection type for EnterpriseRepositoryInfo.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseRepositoryInfoEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseRepositoryInfo])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseRepositoryInfoEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseRepositoryInfo)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerInstallation\n

\n

An Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

customerName (String!)

The customer name to which the Enterprise Server installation belongs.

\n\n\n\n\n\n\n\n\n\n\n\n

hostName (String!)

The host name of the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

isConnected (Boolean!)

Whether or not the installation is connected to an Enterprise Server installation via GitHub Connect.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

userAccounts (EnterpriseServerUserAccountConnection!)

User accounts on this Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerUserAccountOrder)

\n

Ordering options for Enterprise Server user accounts returned from the connection.

\n\n
\n\n
\n\n\n

userAccountsUploads (EnterpriseServerUserAccountsUploadConnection!)

User accounts uploads for the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerUserAccountsUploadOrder)

\n

Ordering options for Enterprise Server user accounts uploads returned from the connection.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerInstallationConnection\n

\n

The connection type for EnterpriseServerInstallation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerInstallationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerInstallation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerInstallationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerInstallation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccount\n

\n

A user account on an Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

emails (EnterpriseServerUserAccountEmailConnection!)

User emails belonging to this user account.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (EnterpriseServerUserAccountEmailOrder)

\n

Ordering options for Enterprise Server user account emails returned from the connection.

\n\n
\n\n
\n\n\n

enterpriseServerInstallation (EnterpriseServerInstallation!)

The Enterprise Server installation on which this user account exists.

\n\n\n\n\n\n\n\n\n\n\n\n

isSiteAdmin (Boolean!)

Whether the user account is a site administrator on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The login of the user account on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

profileName (String)

The profile name of the user account on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

remoteCreatedAt (DateTime!)

The date and time when the user account was created on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

remoteUserId (Int!)

The ID of the user account on the Enterprise Server installation.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountConnection\n

\n

The connection type for EnterpriseServerUserAccount.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerUserAccountEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerUserAccount])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerUserAccount)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEmail\n

\n

An email belonging to a user account on an Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String!)

The email address.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrimary (Boolean!)

Indicates whether this is the primary email of the associated user account.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

userAccount (EnterpriseServerUserAccount!)

The user account to which the email belongs.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEmailConnection\n

\n

The connection type for EnterpriseServerUserAccountEmail.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerUserAccountEmailEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerUserAccountEmail])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountEmailEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerUserAccountEmail)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountsUpload\n

\n

A user accounts upload from an Enterprise Server installation.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise!)

The enterprise to which this upload belongs.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseServerInstallation (EnterpriseServerInstallation!)

The Enterprise Server installation for which this upload was generated.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the file uploaded.

\n\n\n\n\n\n\n\n\n\n\n\n

syncState (EnterpriseServerUserAccountsUploadSyncState!)

The synchronization state of the upload.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountsUploadConnection\n

\n

The connection type for EnterpriseServerUserAccountsUpload.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseServerUserAccountsUploadEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseServerUserAccountsUpload])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseServerUserAccountsUploadEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseServerUserAccountsUpload)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseUserAccount\n

\n

An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the enterprise user account's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

enterprise (Enterprise!)

The enterprise in which this user account exists.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

An identifier for the enterprise user account, a login or email address.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The name of the enterprise user account.

\n\n\n\n\n\n\n\n\n\n\n\n

organizations (EnterpriseOrganizationMembershipConnection!)

A list of enterprise organizations this user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (OrganizationOrder)

\n

Ordering options for organizations returned from the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (EnterpriseUserAccountMembershipRole)

\n

The role of the user in the enterprise organization.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user within the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseUserAccountConnection\n

\n

The connection type for EnterpriseUserAccount.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([EnterpriseUserAccountEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([EnterpriseUserAccount])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n EnterpriseUserAccountEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (EnterpriseUserAccount)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentity\n

\n

An external identity provisioned by SAML SSO or SCIM.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

guid (String!)

The GUID for this identity.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationInvitation (OrganizationInvitation)

Organization invitation for this SCIM-provisioned external identity.

\n\n\n\n\n\n\n\n\n\n\n\n

samlIdentity (ExternalIdentitySamlAttributes)

SAML Identity attributes.

\n\n\n\n\n\n\n\n\n\n\n\n

scimIdentity (ExternalIdentityScimAttributes)

SCIM Identity attributes.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

User linked to this external identity. Will be NULL if this identity has not been claimed by an organization member.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentityConnection\n

\n

The connection type for ExternalIdentity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ExternalIdentityEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ExternalIdentity])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentityEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ExternalIdentity)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentitySamlAttributes\n

\n

SAML attributes for the External Identity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

emails ([UserEmailMetadata!])

The emails associated with the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

familyName (String)

Family name of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

givenName (String)

Given name of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

groups ([String!])

The groups linked to this identity in IDP.

\n\n\n\n\n\n\n\n\n\n\n\n

nameId (String)

The NameID of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n

username (String)

The userName of the SAML identity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ExternalIdentityScimAttributes\n

\n

SCIM attributes for the External Identity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

emails ([UserEmailMetadata!])

The emails associated with the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n

familyName (String)

Family name of the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n

givenName (String)

Given name of the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n

groups ([String!])

The groups linked to this identity in IDP.

\n\n\n\n\n\n\n\n\n\n\n\n

username (String)

The userName of the SCIM identity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n FollowerConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n FollowingConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n FundingLink\n

\n

A funding platform link for a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

platform (FundingPlatform!)

The funding platform this link is for.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The configured URL for this funding link.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GenericHovercardContext\n

\n

A generic hovercard context with a message and icon.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Gist\n

\n

A Gist.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (GistCommentConnection!)

A list of comments associated with the gist.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The gist description.

\n\n\n\n\n\n\n\n\n\n\n\n

files ([GistFile])

The files in this gist.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

limit (Int)

\n

The maximum number of files to return.

\n

The default value is 10.

\n
\n\n
\n

oid (GitObjectID)

\n

The oid of the files to return.

\n\n
\n\n
\n\n\n

forks (GistConnection!)

A list of forks associated with the gist.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (GistOrder)

\n

Ordering options for gists returned from the connection.

\n\n
\n\n
\n\n\n

isFork (Boolean!)

Identifies if the gist is a fork.

\n\n\n\n\n\n\n\n\n\n\n\n

isPublic (Boolean!)

Whether the gist is public or not.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The gist name.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (RepositoryOwner)

The gist owner.

\n\n\n\n\n\n\n\n\n\n\n\n

pushedAt (DateTime)

Identifies when the gist was last pushed to.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTML path to this resource.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazerCount (Int!)

Returns a count of how many stargazers there are on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazers (StargazerConnection!)

A list of users who have starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this Gist.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasStarred (Boolean!)

Returns a boolean indicating whether the viewing user has starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistComment\n

\n

Represents a comment on an Gist.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the gist.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the comment body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

gist (Gist!)

The associated gist.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistCommentConnection\n

\n

The connection type for GistComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([GistCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([GistComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (GistComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistConnection\n

\n

The connection type for Gist.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([GistEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Gist])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Gist)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GistFile\n

\n

A file in a gist.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

encodedName (String)

The file name encoded to remove characters that are invalid in URL paths.

\n\n\n\n\n\n\n\n\n\n\n\n

encoding (String)

The gist file encoding.

\n\n\n\n\n\n\n\n\n\n\n\n

extension (String)

The file extension from the file name.

\n\n\n\n\n\n\n\n\n\n\n\n

isImage (Boolean!)

Indicates if this file is an image.

\n\n\n\n\n\n\n\n\n\n\n\n

isTruncated (Boolean!)

Whether the file's contents were truncated.

\n\n\n\n\n\n\n\n\n\n\n\n

language (Language)

The programming language this file is written in.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The gist file name.

\n\n\n\n\n\n\n\n\n\n\n\n

size (Int)

The gist file size in bytes.

\n\n\n\n\n\n\n\n\n\n\n\n

text (String)

UTF8 text data or null if the file is binary.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

truncate (Int)

\n

Optionally truncate the returned file to this length.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitActor\n

\n

Represents an actor in a Git commit (ie. an author or committer).

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the author's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

date (GitTimestamp)

The timestamp of the Git action (authoring or committing).

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email in the Git commit.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The name in the Git commit.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The GitHub user corresponding to the email field. Null if no such user exists.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitActorConnection\n

\n

The connection type for GitActor.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([GitActorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([GitActor])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitActorEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (GitActor)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GitHubMetadata\n

\n

Represents information about the GitHub instance.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

gitHubServicesSha (GitObjectID!)

Returns a String that's a SHA of github-services.

\n\n\n\n\n\n\n\n\n\n\n\n

gitIpAddresses ([String!])

IP addresses that users connect to for git operations.

\n\n\n\n\n\n\n\n\n\n\n\n

hookIpAddresses ([String!])

IP addresses that service hooks are sent from.

\n\n\n\n\n\n\n\n\n\n\n\n

importerIpAddresses ([String!])

IP addresses that the importer connects from.

\n\n\n\n\n\n\n\n\n\n\n\n

isPasswordAuthenticationVerifiable (Boolean!)

Whether or not users are verified.

\n\n\n\n\n\n\n\n\n\n\n\n

pagesIpAddresses ([String!])

IP addresses for GitHub Pages' A records.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n GpgSignature\n

\n

Represents a GPG signature on a Commit or Tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String!)

Email used to sign this object.

\n\n\n\n\n\n\n\n\n\n\n\n

isValid (Boolean!)

True if the signature is valid and verified by GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

keyId (String)

Hex-encoded ID of the key that signed this object.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String!)

Payload for GPG signing object. Raw ODB object without the signature header.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (String!)

ASCII-armored signature header from object.

\n\n\n\n\n\n\n\n\n\n\n\n

signer (User)

GitHub user corresponding to the email signing this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (GitSignatureState!)

The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

\n\n\n\n\n\n\n\n\n\n\n\n

wasSignedByGitHub (Boolean!)

True if the signature was made with GitHub's signing key.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n HeadRefDeletedEvent\n

\n

Represents ahead_ref_deletedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

headRef (Ref)

Identifies the Ref associated with the head_ref_deleted event.

\n\n\n\n\n\n\n\n\n\n\n\n

headRefName (String!)

Identifies the name of the Ref associated with the head_ref_deleted event.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n HeadRefForcePushedEvent\n

\n

Represents ahead_ref_force_pushedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

afterCommit (Commit)

Identifies the after commit SHA for thehead_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

beforeCommit (Commit)

Identifies the before commit SHA for thehead_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Identifies the fully qualified ref name for thehead_ref_force_pushedevent.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n HeadRefRestoredEvent\n

\n

Represents ahead_ref_restoredevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Hovercard\n

\n

Detail needed to display a hovercard for a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

contexts ([HovercardContext!]!)

Each of the contexts for this hovercard.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IpAllowListEntry\n

\n

An IP address or range of addresses that is allowed to access an owner's resources.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allowListValue (String!)

A single IP address or range of IP addresses in CIDR notation.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isActive (Boolean!)

Whether the entry is currently active.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The name of the IP allow list entry.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (IpAllowListOwner!)

The owner of the IP allow list entry.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IpAllowListEntryConnection\n

\n

The connection type for IpAllowListEntry.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IpAllowListEntryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IpAllowListEntry])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IpAllowListEntryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IpAllowListEntry)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Issue\n

\n

An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

activeLockReason (LockReason)

Reason that the conversation was locked.

\n\n\n\n\n\n\n\n\n\n\n\n

assignees (UserConnection!)

A list of Users assigned to this object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the body of the issue.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyResourcePath (URI!)

The http path for this issue body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

Identifies the body of the issue rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyUrl (URI!)

The http URL for this issue body.

\n\n\n\n\n\n\n\n\n\n\n\n

closed (Boolean!)

true if the object is closed (definition of closed may depend on type).

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (IssueCommentConnection!)

A list of comments associated with the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueCommentOrder)

\n

Ordering options for issue comments returned from the connection.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

hovercard (Hovercard!)

The hovercard information for this issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

includeNotificationContexts (Boolean)

\n

Whether or not to include notification contexts.

\n

The default value is true.

\n
\n\n
\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isReadByViewer (Boolean)

Is this issue read by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

labels (LabelConnection)

A list of labels associated with the object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LabelOrder)

\n

Ordering options for labels returned from the connection.

\n\n
\n\n
\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

locked (Boolean!)

true if the object is locked.

\n\n\n\n\n\n\n\n\n\n\n\n

milestone (Milestone)

Identifies the milestone associated with the issue.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the issue number.

\n\n\n\n\n\n\n\n\n\n\n\n

participants (UserConnection!)

A list of Users that are participating in the Issue conversation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

projectCards (ProjectCardConnection!)

List of project cards associated with this issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

state (IssueState!)

Identifies the state of the issue.

\n\n\n\n\n\n\n\n\n\n\n\n

timeline (IssueTimelineConnection!)

A list of events, comments, commits, etc. associated with the issue.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

timeline is deprecated.

timeline will be removed Use Issue.timelineItems instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Allows filtering timeline events by a since timestamp.

\n\n
\n\n
\n\n\n

timelineItems (IssueTimelineItemsConnection!)

A list of events, comments, commits, etc. associated with the issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

itemTypes ([IssueTimelineItemsItemType!])

\n

Filter timeline items by type.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Filter timeline items by a since timestamp.

\n\n
\n\n
\n

skip (Int)

\n

Skips the first n elements in the list.

\n\n
\n\n
\n\n\n

title (String!)

Identifies the issue title.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueComment\n

\n

Represents a comment on an Issue.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

Returns the pull request associated with the comment, if this comment was made on a\npull request.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this issue comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this issue comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueCommentConnection\n

\n

The connection type for IssueComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IssueComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IssueComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueConnection\n

\n

The connection type for Issue.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Issue])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueContributionsByRepository\n

\n

This aggregates issues opened by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedIssueContributionConnection!)

The issue contributions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the issues were opened.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Issue)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTemplate\n

\n

A repository issue template.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

about (String)

The template purpose.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String)

The suggested issue body.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The template name.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String)

The suggested issue title.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineConnection\n

\n

The connection type for IssueTimelineItem.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueTimelineItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IssueTimelineItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IssueTimelineItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineItemsConnection\n

\n

The connection type for IssueTimelineItems.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([IssueTimelineItemsEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

filteredCount (Int!)

Identifies the count of items after applying before and after filters.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([IssueTimelineItems])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageCount (Int!)

Identifies the count of items after applying before/after filters and first/last/skip slicing.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the timeline was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n IssueTimelineItemsEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (IssueTimelineItems)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n JoinedGitHubContribution\n

\n

Represents a user signing up for a GitHub account.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Label\n

\n

A label for categorizing Issues or Milestones with a given Repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

color (String!)

Identifies the label color.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime)

Identifies the date and time when the label was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

A brief description of this label.

\n\n\n\n\n\n\n\n\n\n\n\n

isDefault (Boolean!)

Indicates whether or not this is a default label.

\n\n\n\n\n\n\n\n\n\n\n\n

issues (IssueConnection!)

A list of issues associated with this label.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

name (String!)

Identifies the label name.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests associated with this label.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this label.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this label.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime)

Identifies the date and time when the label was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this label.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LabelConnection\n

\n

The connection type for Label.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([LabelEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Label])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LabelEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Label)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LabeledEvent\n

\n

Represents alabeledevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

label (Label!)

Identifies the label associated with thelabeledevent.

\n\n\n\n\n\n\n\n\n\n\n\n

labelable (Labelable!)

Identifies the Labelable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Language\n

\n

Represents a given language found in repositories.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

color (String)

The color defined for the current language.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the current language.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LanguageConnection\n

\n

A list of languages associated with the parent.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([LanguageEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Language])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalSize (Int!)

The total size in bytes of files written in that language.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LanguageEdge\n

\n

Represents the language of a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

size (Int!)

The number of bytes of code written in the language.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n License\n

\n

A repository's open source license.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String!)

The full text of the license.

\n\n\n\n\n\n\n\n\n\n\n\n

conditions ([LicenseRule]!)

The conditions set by the license.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

A human-readable description of the license.

\n\n\n\n\n\n\n\n\n\n\n\n

featured (Boolean!)

Whether the license should be featured.

\n\n\n\n\n\n\n\n\n\n\n\n

hidden (Boolean!)

Whether the license should be displayed in license pickers.

\n\n\n\n\n\n\n\n\n\n\n\n

implementation (String)

Instructions on how to implement the license.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The lowercased SPDX ID of the license.

\n\n\n\n\n\n\n\n\n\n\n\n

limitations ([LicenseRule]!)

The limitations set by the license.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The license full name specified by https://spdx.org/licenses.

\n\n\n\n\n\n\n\n\n\n\n\n

nickname (String)

Customary short name if applicable (e.g, GPLv3).

\n\n\n\n\n\n\n\n\n\n\n\n

permissions ([LicenseRule]!)

The permissions set by the license.

\n\n\n\n\n\n\n\n\n\n\n\n

pseudoLicense (Boolean!)

Whether the license is a pseudo-license placeholder (e.g., other, no-license).

\n\n\n\n\n\n\n\n\n\n\n\n

spdxId (String)

Short identifier specified by https://spdx.org/licenses.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI)

URL to the license on https://choosealicense.com.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LicenseRule\n

\n

Describes a License's conditions, permissions, and limitations.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

description (String!)

A description of the rule.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The machine-readable rule key.

\n\n\n\n\n\n\n\n\n\n\n\n

label (String!)

The human-readable rule label.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n LockedEvent\n

\n

Represents alockedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

lockReason (LockReason)

Reason that the conversation was locked (optional).

\n\n\n\n\n\n\n\n\n\n\n\n

lockable (Lockable!)

Object that was locked.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Mannequin\n

\n

A placeholder user for attribution of imported data on GitHub.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI!)

A URL pointing to the GitHub App's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The mannequin's email on the source instance.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The username of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTML path to this resource.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The URL to this resource.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarkedAsDuplicateEvent\n

\n

Represents amarked_as_duplicateevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

canonical (IssueOrPullRequest)

The authoritative issue or pull request which has been duplicated by another.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request which has been marked as a duplicate of another.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Canonical and duplicate belong to different repositories.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceCategory\n

\n

A public description of a Marketplace category.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

description (String)

The category's description.

\n\n\n\n\n\n\n\n\n\n\n\n

howItWorks (String)

The technical description of how apps listed in this category work with GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The category's name.

\n\n\n\n\n\n\n\n\n\n\n\n

primaryListingCount (Int!)

How many Marketplace listings have this as their primary category.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this Marketplace category.

\n\n\n\n\n\n\n\n\n\n\n\n

secondaryListingCount (Int!)

How many Marketplace listings have this as their secondary category.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The short name of the category used in its URL.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this Marketplace category.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceListing\n

\n

A listing in the GitHub integration marketplace.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

app (App)

The GitHub App this listing represents.

\n\n\n\n\n\n\n\n\n\n\n\n

companyUrl (URI)

URL to the listing owner's company site.

\n\n\n\n\n\n\n\n\n\n\n\n

configurationResourcePath (URI!)

The HTTP path for configuring access to the listing's integration or OAuth app.

\n\n\n\n\n\n\n\n\n\n\n\n

configurationUrl (URI!)

The HTTP URL for configuring access to the listing's integration or OAuth app.

\n\n\n\n\n\n\n\n\n\n\n\n

documentationUrl (URI)

URL to the listing's documentation.

\n\n\n\n\n\n\n\n\n\n\n\n

extendedDescription (String)

The listing's detailed description.

\n\n\n\n\n\n\n\n\n\n\n\n

extendedDescriptionHTML (HTML!)

The listing's detailed description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescription (String!)

The listing's introductory description.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescriptionHTML (HTML!)

The listing's introductory description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

hasPublishedFreeTrialPlans (Boolean!)

Does this listing have any plans with a free trial?.

\n\n\n\n\n\n\n\n\n\n\n\n

hasTermsOfService (Boolean!)

Does this listing have a terms of service link?.

\n\n\n\n\n\n\n\n\n\n\n\n

howItWorks (String)

A technical description of how this app works with GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

howItWorksHTML (HTML!)

The listing's technical description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

installationUrl (URI)

URL to install the product to the viewer's account or organization.

\n\n\n\n\n\n\n\n\n\n\n\n

installedForViewer (Boolean!)

Whether this listing's app has been installed for the current viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

isArchived (Boolean!)

Whether this listing has been removed from the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isDraft (Boolean!)

Whether this listing is still an editable draft that has not been submitted\nfor review and is not publicly visible in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isPaid (Boolean!)

Whether the product this listing represents is available as part of a paid plan.

\n\n\n\n\n\n\n\n\n\n\n\n

isPublic (Boolean!)

Whether this listing has been approved for display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isRejected (Boolean!)

Whether this listing has been rejected by GitHub for display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnverified (Boolean!)

Whether this listing has been approved for unverified display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isUnverifiedPending (Boolean!)

Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerificationPendingFromDraft (Boolean!)

Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerificationPendingFromUnverified (Boolean!)

Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerified (Boolean!)

Whether this listing has been approved for verified display in the Marketplace.

\n\n\n\n\n\n\n\n\n\n\n\n

logoBackgroundColor (String!)

The hex color code, without the leading '#', for the logo background.

\n\n\n\n\n\n\n\n\n\n\n\n

logoUrl (URI)

URL for the listing's logo image.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size in pixels of the resulting square image.

\n

The default value is 400.

\n
\n\n
\n\n\n

name (String!)

The listing's full name.

\n\n\n\n\n\n\n\n\n\n\n\n

normalizedShortDescription (String!)

The listing's very short description without a trailing period or ampersands.

\n\n\n\n\n\n\n\n\n\n\n\n

pricingUrl (URI)

URL to the listing's detailed pricing.

\n\n\n\n\n\n\n\n\n\n\n\n

primaryCategory (MarketplaceCategory!)

The category that best describes the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

privacyPolicyUrl (URI!)

URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for the Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

screenshotUrls ([String]!)

The URLs for the listing's screenshots.

\n\n\n\n\n\n\n\n\n\n\n\n

secondaryCategory (MarketplaceCategory)

An alternate category that describes the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescription (String!)

The listing's very short description.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The short name of the listing used in its URL.

\n\n\n\n\n\n\n\n\n\n\n\n

statusUrl (URI)

URL to the listing's status page.

\n\n\n\n\n\n\n\n\n\n\n\n

supportEmail (String)

An email address for support for this listing's app.

\n\n\n\n\n\n\n\n\n\n\n\n

supportUrl (URI!)

Either a URL or an email address for support for this listing's app, may\nreturn an empty string for listings that do not require a support URL.

\n\n\n\n\n\n\n\n\n\n\n\n

termsOfServiceUrl (URI)

URL to the listing's terms of service.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for the Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAddPlans (Boolean!)

Can the current viewer add plans for this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanApprove (Boolean!)

Can the current viewer approve this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanDelist (Boolean!)

Can the current viewer delist this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanEdit (Boolean!)

Can the current viewer edit this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanEditCategories (Boolean!)

Can the current viewer edit the primary and secondary category of this\nMarketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanEditPlans (Boolean!)

Can the current viewer edit the plans for this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanRedraft (Boolean!)

Can the current viewer return this Marketplace listing to draft state\nso it becomes editable again.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReject (Boolean!)

Can the current viewer reject this Marketplace listing by returning it to\nan editable draft state or rejecting it entirely.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanRequestApproval (Boolean!)

Can the current viewer request this listing be reviewed for display in\nthe Marketplace as verified.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasPurchased (Boolean!)

Indicates whether the current user has an active subscription to this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasPurchasedForAllOrganizations (Boolean!)

Indicates if the current user has purchased a subscription to this Marketplace listing\nfor all of the organizations the user owns.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsListingAdmin (Boolean!)

Does the current viewer role allow them to administer this Marketplace listing.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceListingConnection\n

\n

Look up Marketplace Listings.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([MarketplaceListingEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([MarketplaceListing])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MarketplaceListingEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (MarketplaceListing)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MembersCanDeleteReposClearAuditEntry\n

\n

Audit log entry for a members_can_delete_repos.clear event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MembersCanDeleteReposDisableAuditEntry\n

\n

Audit log entry for a members_can_delete_repos.disable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MembersCanDeleteReposEnableAuditEntry\n

\n

Audit log entry for a members_can_delete_repos.enable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MentionedEvent\n

\n

Represents amentionedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MergedEvent\n

\n

Represents amergedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with the merge event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeRef (Ref)

Identifies the Ref associated with the merge event.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeRefName (String!)

Identifies the name of the Ref associated with the merge event.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this merged event.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this merged event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Milestone\n

\n

Represents a Milestone object on a given repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

closed (Boolean!)

true if the object is closed (definition of closed may depend on type).

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

Identifies the actor who created the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

Identifies the description of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

dueOn (DateTime)

Identifies the due date of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

issues (IssueConnection!)

A list of issues associated with the milestone.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

number (Int!)

Identifies the number of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

progressPercentage (Float!)

Indentifies the percentage complete for the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests associated with the milestone.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

state (MilestoneState!)

Identifies the state of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

Identifies the title of the milestone.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this milestone.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MilestoneConnection\n

\n

The connection type for Milestone.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([MilestoneEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Milestone])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MilestoneEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Milestone)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MilestonedEvent\n

\n

Represents amilestonedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

milestoneTitle (String!)

Identifies the milestone title associated with themilestonedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (MilestoneItem!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n MovedColumnsInProjectEvent\n

\n

Represents amoved_columns_in_projectevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

previousProjectColumnName (String!)

Column name the issue or pull request was moved from.

\n\n\n\n\n
\n

Preview notice

\n

previousProjectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

project (Project)

Project referenced by event.

\n\n\n\n\n
\n

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectCard (ProjectCard)

Project card referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectCard is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectColumnName (String!)

Column name the issue or pull request was moved to.

\n\n\n\n\n
\n

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OauthApplicationCreateAuditEntry\n

\n

Audit log entry for a oauth_application.create event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

applicationUrl (URI)

The application URL of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

callbackUrl (URI)

The callback URL of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

rateLimit (Int)

The rate limit of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

state (OauthApplicationCreateAuditEntryState)

The state of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgAddBillingManagerAuditEntry\n

\n

Audit log entry for a org.add_billing_manager.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

invitationEmail (String)

The email address used to invite a billing manager for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgAddMemberAuditEntry\n

\n

Audit log entry for a org.add_member.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (OrgAddMemberAuditEntryPermission)

The permission level of the member added to the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgBlockUserAuditEntry\n

\n

Audit log entry for a org.block_user.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUser (User)

The blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserName (String)

The username of the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserResourcePath (URI)

The HTTP path for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserUrl (URI)

The HTTP URL for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgConfigDisableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a org.config.disable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgConfigEnableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a org.config.enable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgCreateAuditEntry\n

\n

Audit log entry for a org.create event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

billingPlan (OrgCreateAuditEntryBillingPlan)

The billing plan for the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgDisableOauthAppRestrictionsAuditEntry\n

\n

Audit log entry for a org.disable_oauth_app_restrictions event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgDisableSamlAuditEntry\n

\n

Audit log entry for a org.disable_saml event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

digestMethodUrl (URI)

The SAML provider's digest algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

issuerUrl (URI)

The SAML provider's issuer URL.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethodUrl (URI)

The SAML provider's signature algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

singleSignOnUrl (URI)

The SAML provider's single sign-on URL.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgDisableTwoFactorRequirementAuditEntry\n

\n

Audit log entry for a org.disable_two_factor_requirement event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgEnableOauthAppRestrictionsAuditEntry\n

\n

Audit log entry for a org.enable_oauth_app_restrictions event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgEnableSamlAuditEntry\n

\n

Audit log entry for a org.enable_saml event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

digestMethodUrl (URI)

The SAML provider's digest algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

issuerUrl (URI)

The SAML provider's issuer URL.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethodUrl (URI)

The SAML provider's signature algorithm URL.

\n\n\n\n\n\n\n\n\n\n\n\n

singleSignOnUrl (URI)

The SAML provider's single sign-on URL.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgEnableTwoFactorRequirementAuditEntry\n

\n

Audit log entry for a org.enable_two_factor_requirement event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgInviteMemberAuditEntry\n

\n

Audit log entry for a org.invite_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email address of the organization invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationInvitation (OrganizationInvitation)

The organization invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgInviteToBusinessAuditEntry\n

\n

Audit log entry for a org.invite_to_business event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgOauthAppAccessApprovedAuditEntry\n

\n

Audit log entry for a org.oauth_app_access_approved event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgOauthAppAccessDeniedAuditEntry\n

\n

Audit log entry for a org.oauth_app_access_denied event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgOauthAppAccessRequestedAuditEntry\n

\n

Audit log entry for a org.oauth_app_access_requested event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationName (String)

The name of the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationResourcePath (URI)

The HTTP path for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

oauthApplicationUrl (URI)

The HTTP URL for the OAuth Application.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRemoveBillingManagerAuditEntry\n

\n

Audit log entry for a org.remove_billing_manager event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

reason (OrgRemoveBillingManagerAuditEntryReason)

The reason for the billing manager being removed.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRemoveMemberAuditEntry\n

\n

Audit log entry for a org.remove_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

membershipTypes ([OrgRemoveMemberAuditEntryMembershipType!])

The types of membership the member has with the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

reason (OrgRemoveMemberAuditEntryReason)

The reason for the member being removed.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRemoveOutsideCollaboratorAuditEntry\n

\n

Audit log entry for a org.remove_outside_collaborator event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

membershipTypes ([OrgRemoveOutsideCollaboratorAuditEntryMembershipType!])

The types of membership the outside collaborator has with the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

reason (OrgRemoveOutsideCollaboratorAuditEntryReason)

The reason for the outside collaborator being removed from the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberAuditEntry\n

\n

Audit log entry for a org.restore_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredCustomEmailRoutingsCount (Int)

The number of custom email routings for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredIssueAssignmentsCount (Int)

The number of issue assignemnts for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredMemberships ([OrgRestoreMemberAuditEntryMembership!])

Restored organization membership objects.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredMembershipsCount (Int)

The number of restored memberships.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredRepositoriesCount (Int)

The number of repositories of the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredRepositoryStarsCount (Int)

The number of starred repositories for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

restoredRepositoryWatchesCount (Int)

The number of watched repositories for the restored member.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberMembershipOrganizationAuditEntryData\n

\n

Metadata for an organization membership for org.restore_member actions.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberMembershipRepositoryAuditEntryData\n

\n

Metadata for a repository membership for org.restore_member actions.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgRestoreMemberMembershipTeamAuditEntryData\n

\n

Metadata for a team membership for org.restore_member actions.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUnblockUserAuditEntry\n

\n

Audit log entry for a org.unblock_user.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUser (User)

The user being unblocked by the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserName (String)

The username of the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserResourcePath (URI)

The HTTP path for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

blockedUserUrl (URI)

The HTTP URL for the blocked user.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateDefaultRepositoryPermissionAuditEntry\n

\n

Audit log entry for a org.update_default_repository_permission.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

The new default repository permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

The former default repository permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateMemberAuditEntry\n

\n

Audit log entry for a org.update_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (OrgUpdateMemberAuditEntryPermission)

The new member permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

permissionWas (OrgUpdateMemberAuditEntryPermission)

The former member permission level for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateMemberRepositoryCreationPermissionAuditEntry\n

\n

Audit log entry for a org.update_member_repository_creation_permission event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

canCreateRepositories (Boolean)

Can members create repositories in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (OrgUpdateMemberRepositoryCreationPermissionAuditEntryVisibility)

The permission for visibility level of repositories for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrgUpdateMemberRepositoryInvitationPermissionAuditEntry\n

\n

Audit log entry for a org.update_member_repository_invitation_permission event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

canInviteOutsideCollaboratorsToRepositories (Boolean)

Can outside collaborators be invited to repositories in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Organization\n

\n

An account on GitHub, with one or more owners, that has repositories, members and teams.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

anyPinnableItems (Boolean!)

Determine if this repository owner has any items that can be pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

type (PinnableItemType)

\n

Filter to only a particular kind of pinnable item.

\n\n
\n\n
\n\n\n

auditLog (OrganizationAuditEntryConnection!)

Audit log entries of the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (AuditLogOrder)

\n

Ordering options for the returned audit log entries.

\n\n
\n\n
\n

query (String)

\n

The query string to filter audit entries.

\n\n
\n\n
\n\n\n

avatarUrl (URI!)

A URL pointing to the organization's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The organization's public profile description.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (String)

The organization's public profile description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The organization's public email.

\n\n\n\n\n\n\n\n\n\n\n\n

hasSponsorsListing (Boolean!)

True if this user/organization has a GitHub Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n\n

interactionAbility (RepositoryInteractionAbility)

The interaction ability settings for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

ipAllowListEnabledSetting (IpAllowListEnabledSettingValue!)

The setting value for whether the organization has an IP allow list enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

ipAllowListEntries (IpAllowListEntryConnection!)

The IP addresses that are allowed to access resources owned by the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IpAllowListEntryOrder)

\n

Ordering options for IP allow list entries returned.

\n\n
\n\n
\n\n\n

isSponsoringViewer (Boolean!)

True if the viewer is sponsored by this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

isVerified (Boolean!)

Whether the organization has verified its profile email and website, always false on Enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

itemShowcase (ProfileItemShowcase!)

Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

\n\n\n\n\n\n\n\n\n\n\n\n

location (String)

The organization's public profile location.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The organization's login name.

\n\n\n\n\n\n\n\n\n\n\n\n

memberStatuses (UserStatusConnection!)

Get the status messages members of this entity have set that are either public or visible only to the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (UserStatusOrder)

\n

Ordering options for user statuses returned from the connection.

\n\n
\n\n
\n\n\n

membersWithRole (OrganizationMemberConnection!)

A list of users who are members of this organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

name (String)

The organization's public profile name.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamResourcePath (URI!)

The HTTP path creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamUrl (URI!)

The HTTP URL creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationBillingEmail (String)

The billing email for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

packages (PackageConnection!)

A list of packages under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

names ([String])

\n

Find packages by their names.

\n\n
\n\n
\n

orderBy (PackageOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n

packageType (PackageType)

\n

Filter registry package by type.

\n\n
\n\n
\n

repositoryId (ID)

\n

Find packages in a repository by ID.

\n\n
\n\n
\n\n\n

pendingMembers (UserConnection!)

A list of users who have been invited to join this organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

pinnableItems (PinnableItemConnection!)

A list of repositories and gists this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinnable items that are returned.

\n\n
\n\n
\n\n\n

pinnedItems (PinnableItemConnection!)

A list of repositories and gists this profile owner has pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinned items that are returned.

\n\n
\n\n
\n\n\n

pinnedItemsRemaining (Int!)

Returns how many more items this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Find project by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The project number to find.

\n\n
\n\n
\n\n\n

projects (ProjectConnection!)

A list of projects under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ProjectOrder)

\n

Ordering options for projects returned from the connection.

\n\n
\n\n
\n

search (String)

\n

Query to search projects by, currently only searching by name.

\n\n
\n\n
\n

states ([ProjectState!])

\n

A list of states to filter the projects by.

\n\n
\n\n
\n\n\n

projectsResourcePath (URI!)

The HTTP path listing organization's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

projectsUrl (URI!)

The HTTP URL listing organization's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (RepositoryConnection!)

A list of repositories that the user owns.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isFork (Boolean)

\n

If non-null, filters repositories according to whether they are forks of another repository.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

repository (Repository)

Find Repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

Name of Repository to find.

\n\n
\n\n
\n\n\n

requiresTwoFactorAuthentication (Boolean)

When true the organization requires all members, billing managers, and outside\ncollaborators to enable two-factor authentication.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

samlIdentityProvider (OrganizationIdentityProvider)

The Organization's SAML identity providers.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorsListing (SponsorsListing)

The GitHub Sponsors listing for this user or organization.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorshipsAsMaintainer (SponsorshipConnection!)

This object's sponsorships as the maintainer.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includePrivate (Boolean)

\n

Whether or not to include private sponsorships in the result set.

\n

The default value is false.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

sponsorshipsAsSponsor (SponsorshipConnection!)

This object's sponsorships as the sponsor.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

team (Team)

Find an organization's team by its slug.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

slug (String!)

\n

The name or slug of the team to find.

\n\n
\n\n
\n\n\n

teams (TeamConnection!)

A list of teams in this organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

ldapMapped (Boolean)

\n

If true, filters teams that are mapped to an LDAP Group (Enterprise only).

\n\n
\n\n
\n

orderBy (TeamOrder)

\n

Ordering options for teams returned from the connection.

\n\n
\n\n
\n

privacy (TeamPrivacy)

\n

If non-null, filters teams according to privacy.

\n\n
\n\n
\n

query (String)

\n

If non-null, filters teams with query on team name and team slug.

\n\n
\n\n
\n

role (TeamRole)

\n

If non-null, filters teams according to whether the viewer is an admin or member on team.

\n\n
\n\n
\n

rootTeamsOnly (Boolean)

\n

If true, restrict to only root teams.

\n

The default value is false.

\n
\n\n
\n

userLogins ([String!])

\n

User logins to filter by.

\n\n
\n\n
\n\n\n

teamsResourcePath (URI!)

The HTTP path listing organization's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsUrl (URI!)

The HTTP URL listing organization's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

twitterUsername (String)

The organization's Twitter username.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAdminister (Boolean!)

Organization is adminable by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanChangePinnedItems (Boolean!)

Can the viewer pin repositories and gists to the profile?.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateProjects (Boolean!)

Can the current viewer create new projects on this owner.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateRepositories (Boolean!)

Viewer can create repositories on this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateTeams (Boolean!)

Viewer can create teams on this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSponsor (Boolean!)

Whether or not the viewer is able to sponsor this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsAMember (Boolean!)

Viewer is an active member of this organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsSponsoring (Boolean!)

True if the viewer is sponsoring this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

websiteUrl (URI)

The organization's public profile URL.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationAuditEntryConnection\n

\n

The connection type for OrganizationAuditEntry.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationAuditEntryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([OrganizationAuditEntry])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationAuditEntryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (OrganizationAuditEntry)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationConnection\n

\n

The connection type for Organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Organization])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Organization)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationIdentityProvider\n

\n

An Identity Provider configured to provision SAML and SCIM identities for Organizations.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

digestMethod (URI)

The digest algorithm used to sign SAML requests for the Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n\n

externalIdentities (ExternalIdentityConnection!)

External Identities provisioned by this Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

idpCertificate (X509Certificate)

The x509 certificate used by the Identity Provder to sign assertions and responses.

\n\n\n\n\n\n\n\n\n\n\n\n

issuer (String)

The Issuer Entity ID for the SAML Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

Organization this Identity Provider belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

signatureMethod (URI)

The signature algorithm used to sign SAML requests for the Identity Provider.

\n\n\n\n\n\n\n\n\n\n\n\n

ssoUrl (URI)

The URL endpoint for the Identity Provider's SAML SSO.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationInvitation\n

\n

An Invitation for a user to an organization.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String)

The email address of the user invited to the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

invitationType (OrganizationInvitationType!)

The type of invitation that was sent (e.g. email, user).

\n\n\n\n\n\n\n\n\n\n\n\n

invitee (User)

The user who was invited to the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

inviter (User!)

The user who created the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization!)

The organization the invite is for.

\n\n\n\n\n\n\n\n\n\n\n\n

role (OrganizationInvitationRole!)

The user's pending role in the organization (e.g. member, owner).

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationInvitationConnection\n

\n

The connection type for OrganizationInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([OrganizationInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationInvitationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (OrganizationInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationMemberConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([OrganizationMemberEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationMemberEdge\n

\n

Represents a user within an organization.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

hasTwoFactorEnabled (Boolean)

Whether the organization member has two factor enabled or not. Returns null if information is not available to viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

role (OrganizationMemberRole)

The role this user has in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationTeamsHovercardContext\n

\n

An organization teams hovercard context.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

relevantTeams (TeamConnection!)

Teams in this organization the user is a member of that are relevant.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

teamsResourcePath (URI!)

The path for the full team list for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsUrl (URI!)

The URL for the full team list for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

totalTeamCount (Int!)

The total number of teams the user is on in the organization.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n OrganizationsHovercardContext\n

\n

An organization list hovercard context.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

relevantOrganizations (OrganizationConnection!)

Organizations this user is a member of that are relevant.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

totalOrganizationCount (Int!)

The total number of organizations this user is in.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Package\n

\n

Information for an uploaded package.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

latestVersion (PackageVersion)

Find the latest version for the package.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Identifies the name of the package.

\n\n\n\n\n\n\n\n\n\n\n\n

packageType (PackageType!)

Identifies the type of the package.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository this package belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

statistics (PackageStatistics)

Statistics about package activity.

\n\n\n\n\n\n\n\n\n\n\n\n

version (PackageVersion)

Find package version by version string.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

version (String!)

\n

The package version.

\n\n
\n\n
\n\n\n

versions (PackageVersionConnection!)

list of versions for this package.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (PackageVersionOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageConnection\n

\n

The connection type for Package.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PackageEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Package])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Package)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageFile\n

\n

A file in a package version.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

md5 (String)

MD5 hash of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Name of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

packageVersion (PackageVersion)

The package version this file belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

sha1 (String)

SHA1 hash of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

sha256 (String)

SHA256 hash of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

size (Int)

Size of the file in bytes.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI)

URL to download the asset.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageFileConnection\n

\n

The connection type for PackageFile.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PackageFileEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PackageFile])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageFileEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PackageFile)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageStatistics\n

\n

Represents a object that contains package activity statistics such as downloads.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

downloadsTotalCount (Int!)

Number of times the package was downloaded since it was created.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageTag\n

\n

A version tag contains the mapping between a tag name and a version.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

name (String!)

Identifies the tag name of the version.

\n\n\n\n\n\n\n\n\n\n\n\n

version (PackageVersion)

Version that the tag is associated with.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersion\n

\n

Information about a specific package version.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

files (PackageFileConnection!)

List of files associated with this package version.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (PackageFileOrder)

\n

Ordering of the returned package files.

\n\n
\n\n
\n\n\n

package (Package)

The package associated with this version.

\n\n\n\n\n\n\n\n\n\n\n\n

platform (String)

The platform this version was built for.

\n\n\n\n\n\n\n\n\n\n\n\n

preRelease (Boolean!)

Whether or not this version is a pre-release.

\n\n\n\n\n\n\n\n\n\n\n\n

readme (String)

The README of this package version.

\n\n\n\n\n\n\n\n\n\n\n\n

release (Release)

The release associated with this package version.

\n\n\n\n\n\n\n\n\n\n\n\n

statistics (PackageVersionStatistics)

Statistics about package activity.

\n\n\n\n\n\n\n\n\n\n\n\n

summary (String)

The package version summary.

\n\n\n\n\n\n\n\n\n\n\n\n

version (String!)

The version string.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersionConnection\n

\n

The connection type for PackageVersion.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PackageVersionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PackageVersion])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PackageVersion)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PackageVersionStatistics\n

\n

Represents a object that contains package version activity statistics such as downloads.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

downloadsTotalCount (Int!)

Number of times the package was downloaded since it was created.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PageInfo\n

\n

Information about pagination in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

endCursor (String)

When paginating forwards, the cursor to continue.

\n\n\n\n\n\n\n\n\n\n\n\n

hasNextPage (Boolean!)

When paginating forwards, are there more items?.

\n\n\n\n\n\n\n\n\n\n\n\n

hasPreviousPage (Boolean!)

When paginating backwards, are there more items?.

\n\n\n\n\n\n\n\n\n\n\n\n

startCursor (String)

When paginating backwards, the cursor to continue.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PermissionSource\n

\n

A level of permission and source for a user's access to a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

organization (Organization!)

The organization the repository belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (DefaultRepositoryPermissionField!)

The level of access this source has granted to the user.

\n\n\n\n\n\n\n\n\n\n\n\n

source (PermissionGranter!)

The source of this permission.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnableItemConnection\n

\n

The connection type for PinnableItem.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PinnableItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PinnableItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnableItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PinnableItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedEvent\n

\n

Represents apinnedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedIssue\n

\n

A Pinned Issue is a issue pinned to a repository's index page.

\n
\n\n
\n \n
\n

Preview notice

\n

PinnedIssue is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

The issue that was pinned.

\n\n\n\n\n\n\n\n\n\n\n\n

pinnedBy (Actor!)

The actor that pinned this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository that this issue was pinned to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedIssueConnection\n

\n

The connection type for PinnedIssue.

\n
\n\n
\n \n
\n

Preview notice

\n

PinnedIssueConnection is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PinnedIssueEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PinnedIssue])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PinnedIssueEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n
\n

Preview notice

\n

PinnedIssueEdge is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PinnedIssue)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PrivateRepositoryForkingDisableAuditEntry\n

\n

Audit log entry for a private_repository_forking.disable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PrivateRepositoryForkingEnableAuditEntry\n

\n

Audit log entry for a private_repository_forking.enable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProfileItemShowcase\n

\n

A curatable list of repositories relating to a repository owner, which defaults\nto showing the most popular repositories they own.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

hasPinnedItems (Boolean!)

Whether or not the owner has pinned any repositories or gists.

\n\n\n\n\n\n\n\n\n\n\n\n

items (PinnableItemConnection!)

The repositories and gists in the showcase. If the profile owner has any\npinned items, those will be returned. Otherwise, the profile owner's popular\nrepositories will be returned.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Project\n

\n

Projects manage issues, pull requests and notes within a project owner.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String)

The project's description body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The projects description body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

closed (Boolean!)

true if the object is closed (definition of closed may depend on type).

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

columns (ProjectColumnConnection!)

List of columns in the project.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

The actor who originally created the project.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The project's name.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

The project's number.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (ProjectOwner!)

The project's owner. Currently limited to repositories, organizations, and users.

\n\n\n\n\n\n\n\n\n\n\n\n

pendingCards (ProjectCardConnection!)

List of pending cards in this project.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

progress (ProjectProgress!)

Project progress details.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this project.

\n\n\n\n\n\n\n\n\n\n\n\n

state (ProjectState!)

Whether the project is open or closed.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this project.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectCard\n

\n

A card in a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

column (ProjectColumn)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

content (ProjectCardItem)

The card content item.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

The actor who created this card.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

isArchived (Boolean!)

Whether the card is archived.

\n\n\n\n\n\n\n\n\n\n\n\n

note (String)

The card note.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project!)

The project that contains this card.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this card.

\n\n\n\n\n\n\n\n\n\n\n\n

state (ProjectCardState)

The state of ProjectCard.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this card.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectCardConnection\n

\n

The connection type for ProjectCard.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ProjectCardEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ProjectCard])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectCardEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ProjectCard)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectColumn\n

\n

A column inside a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cards (ProjectCardConnection!)

List of cards in the column.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The project column's name.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project!)

The project that contains this column.

\n\n\n\n\n\n\n\n\n\n\n\n

purpose (ProjectColumnPurpose)

The semantic purpose of the column.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this project column.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this project column.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectColumnConnection\n

\n

The connection type for ProjectColumn.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ProjectColumnEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ProjectColumn])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectColumnEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ProjectColumn)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectConnection\n

\n

A list of projects associated with the owner.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ProjectEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Project])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Project)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ProjectProgress\n

\n

Project progress stats.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

doneCount (Int!)

The number of done cards.

\n\n\n\n\n\n\n\n\n\n\n\n

donePercentage (Float!)

The percentage of done cards.

\n\n\n\n\n\n\n\n\n\n\n\n

enabled (Boolean!)

Whether progress tracking is enabled and cards with purpose exist for this project.

\n\n\n\n\n\n\n\n\n\n\n\n

inProgressCount (Int!)

The number of in-progress cards.

\n\n\n\n\n\n\n\n\n\n\n\n

inProgressPercentage (Float!)

The percentage of in-progress cards.

\n\n\n\n\n\n\n\n\n\n\n\n

todoCount (Int!)

The number of to do cards.

\n\n\n\n\n\n\n\n\n\n\n\n

todoPercentage (Float!)

The percentage of to do cards.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PublicKey\n

\n

A user's public key.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

accessedAt (DateTime)

The last time this authorization was used to perform an action. Values will be null for keys not owned by the user.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime)

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.

\n\n\n\n\n\n\n\n\n\n\n\n

fingerprint (String!)

The fingerprint for this PublicKey.

\n\n\n\n\n\n\n\n\n\n\n\n

isReadOnly (Boolean)

Whether this PublicKey is read-only or not. Values will be null for keys not owned by the user.

\n\n\n\n\n\n\n\n\n\n\n\n

key (String!)

The public key string.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime)

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.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PublicKeyConnection\n

\n

The connection type for PublicKey.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PublicKeyEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PublicKey])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PublicKeyEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PublicKey)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequest\n

\n

A repository pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

activeLockReason (LockReason)

Reason that the conversation was locked.

\n\n\n\n\n\n\n\n\n\n\n\n

additions (Int!)

The number of additions in this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

assignees (UserConnection!)

A list of Users assigned to this object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRef (Ref)

Identifies the base Ref associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRefName (String!)

Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRefOid (GitObjectID!)

Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

baseRepository (Repository)

The repository associated with this pull request's base Ref.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

canBeRebased (Boolean!)

Whether or not the pull request is rebaseable.

\n\n\n\n\n
\n

Preview notice

\n

canBeRebased is available under the Merge info preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

changedFiles (Int!)

The number of changed files in this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

checksResourcePath (URI!)

The HTTP path for the checks of this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

checksUrl (URI!)

The HTTP URL for the checks of this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

closed (Boolean!)

true if the pull request is closed.

\n\n\n\n\n\n\n\n\n\n\n\n

closedAt (DateTime)

Identifies the date and time when the object was closed.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (IssueCommentConnection!)

A list of comments associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueCommentOrder)

\n

Ordering options for issue comments returned from the connection.

\n\n
\n\n
\n\n\n

commits (PullRequestCommitConnection!)

A list of commits present in this pull request's head branch not present in the base branch.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

deletions (Int!)

The number of deletions in this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited this pull request's body.

\n\n\n\n\n\n\n\n\n\n\n\n

files (PullRequestChangedFileConnection)

Lists the files changed within this pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

headRef (Ref)

Identifies the head Ref associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

headRefName (String!)

Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

headRefOid (GitObjectID!)

Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

headRepository (Repository)

The repository associated with this pull request's head Ref.

\n\n\n\n\n\n\n\n\n\n\n\n

headRepositoryOwner (RepositoryOwner)

The owner of the repository associated with this pull request's head Ref.

\n\n\n\n\n\n\n\n\n\n\n\n

hovercard (Hovercard!)

The hovercard information for this issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

includeNotificationContexts (Boolean)

\n

Whether or not to include notification contexts.

\n

The default value is true.

\n
\n\n
\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

The head and base repositories are different.

\n\n\n\n\n\n\n\n\n\n\n\n

isDraft (Boolean!)

Identifies if the pull request is a draft.

\n\n\n\n\n\n\n\n\n\n\n\n

isReadByViewer (Boolean)

Is this pull request read by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

labels (LabelConnection)

A list of labels associated with the object.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LabelOrder)

\n

Ordering options for labels returned from the connection.

\n\n
\n\n
\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

latestOpinionatedReviews (PullRequestReviewConnection)

A list of latest reviews per user associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

writersOnly (Boolean)

\n

Only return reviews from user who have write access to the repository.

\n

The default value is false.

\n
\n\n
\n\n\n

latestReviews (PullRequestReviewConnection)

A list of latest reviews per user associated with the pull request that are not also pending review.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

locked (Boolean!)

true if the pull request is locked.

\n\n\n\n\n\n\n\n\n\n\n\n

maintainerCanModify (Boolean!)

Indicates whether maintainers can modify the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeCommit (Commit)

The commit that was created when this pull request was merged.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeStateStatus (MergeStateStatus!)

Detailed information about the current pull request merge state status.

\n\n\n\n\n
\n

Preview notice

\n

mergeStateStatus is available under the Merge info preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

mergeable (MergeableState!)

Whether or not the pull request can be merged based on the existence of merge conflicts.

\n\n\n\n\n\n\n\n\n\n\n\n

merged (Boolean!)

Whether or not the pull request was merged.

\n\n\n\n\n\n\n\n\n\n\n\n

mergedAt (DateTime)

The date and time that the pull request was merged.

\n\n\n\n\n\n\n\n\n\n\n\n

mergedBy (Actor)

The actor who merged the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

milestone (Milestone)

Identifies the milestone associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the pull request number.

\n\n\n\n\n\n\n\n\n\n\n\n

participants (UserConnection!)

A list of Users that are participating in the Pull Request conversation.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

permalink (URI!)

The permalink to the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

potentialMergeCommit (Commit)

The commit that GitHub automatically generated to test if this pull request\ncould be merged. This field will not return a value if the pull request is\nmerged, or if the test merge commit is still being generated. See the\nmergeable field for more details on the mergeability of the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

projectCards (ProjectCardConnection!)

List of project cards associated with this pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

archivedStates ([ProjectCardArchivedState])

\n

A list of archived states to filter the cards by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

revertResourcePath (URI!)

The HTTP path for reverting this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

revertUrl (URI!)

The HTTP URL for reverting this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewDecision (PullRequestReviewDecision)

The current status of this pull request with respect to code review.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewRequests (ReviewRequestConnection)

A list of review requests associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

reviewThreads (PullRequestReviewThreadConnection!)

The list of all review threads for this pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

reviews (PullRequestReviewConnection)

A list of reviews associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

author (String)

\n

Filter by author of the review.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

states ([PullRequestReviewState!])

\n

A list of states to filter the reviews.

\n\n
\n\n
\n\n\n

state (PullRequestState!)

Identifies the state of the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

suggestedReviewers ([SuggestedReviewer]!)

A list of reviewer suggestions based on commit history and past review comments.

\n\n\n\n\n\n\n\n\n\n\n\n

timeline (PullRequestTimelineConnection!)

A list of events, comments, commits, etc. associated with the pull request.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

timeline is deprecated.

timeline will be removed Use PullRequest.timelineItems instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Allows filtering timeline events by a since timestamp.

\n\n
\n\n
\n\n\n

timelineItems (PullRequestTimelineItemsConnection!)

A list of events, comments, commits, etc. associated with the pull request.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

itemTypes ([PullRequestTimelineItemsItemType!])

\n

Filter timeline items by type.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

since (DateTime)

\n

Filter timeline items by a since timestamp.

\n\n
\n\n
\n

skip (Int)

\n

Skips the first n elements in the list.

\n\n
\n\n
\n\n\n

title (String!)

Identifies the pull request title.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanApplySuggestion (Boolean!)

Whether or not the viewer can apply suggestion.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanDeleteHeadRef (Boolean!)

Check if the viewer can restore the deleted head ref.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerMergeBodyText (String!)

The merge body text for the viewer and method.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

mergeType (PullRequestMergeMethod)

\n

The merge method for the message.

\n\n
\n\n
\n\n\n

viewerMergeHeadlineText (String!)

The merge headline text for the viewer and method.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

mergeType (PullRequestMergeMethod)

\n

The merge method for the message.

\n\n
\n\n
\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestChangedFile\n

\n

A file changed in a pull request.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

additions (Int!)

The number of additions to the file.

\n\n\n\n\n\n\n\n\n\n\n\n

deletions (Int!)

The number of deletions to the file.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerViewedState (FileViewedState!)

The state of the file for the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestChangedFileConnection\n

\n

The connection type for PullRequestChangedFile.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestChangedFileEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestChangedFile])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestChangedFileEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestChangedFile)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommit\n

\n

Represents a Git commit part of a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commit (Commit!)

The Git commit object.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request this commit belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this pull request commit.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this pull request commit.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommitCommentThread\n

\n

Represents a commit comment thread part of a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (CommitCommentConnection!)

The comments that exist in this thread.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit!)

The commit the comments were made on.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String)

The file the comments were made on.

\n\n\n\n\n\n\n\n\n\n\n\n

position (Int)

The position in the diff for the commit that the comment was made on.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request this commit comment thread belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommitConnection\n

\n

The connection type for PullRequestCommit.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestCommitEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestCommit])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestCommitEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestCommit)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestConnection\n

\n

The connection type for PullRequest.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequest])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestContributionsByRepository\n

\n

This aggregates pull requests opened by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedPullRequestContributionConnection!)

The pull request contributions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the pull requests were opened.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequest)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReview\n

\n

A review object for a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorCanPushToRepository (Boolean!)

Indicates whether the author of this review has push access to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

Identifies the pull request review body.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body of this review rendered as plain text.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (PullRequestReviewCommentConnection!)

A list of review comments for the current pull request review.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit)

Identifies the commit associated with this pull request review.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

onBehalfOf (TeamConnection!)

A list of teams that this review was made on behalf of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

Identifies the pull request associated with this pull request review.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path permalink for this PullRequestReview.

\n\n\n\n\n\n\n\n\n\n\n\n

state (PullRequestReviewState!)

Identifies the current state of the pull request review.

\n\n\n\n\n\n\n\n\n\n\n\n

submittedAt (DateTime)

Identifies when the Pull Request Review was submitted.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL permalink for this PullRequestReview.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewComment\n

\n

A review comment associated with a given repository pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the subject of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The comment body of this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The comment body of this review comment rendered as plain text.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies when the comment was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

diffHunk (String!)

The diff hunk to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

draftedAt (DateTime!)

Identifies when the comment was created in a draft state.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isMinimized (Boolean!)

Returns whether or not a comment has been minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

minimizedReason (String)

Returns why the comment was minimized.

\n\n\n\n\n\n\n\n\n\n\n\n

originalCommit (Commit)

Identifies the original commit associated with the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

originalPosition (Int!)

The original line index in the diff to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

outdated (Boolean!)

Identifies when the comment body is outdated.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

position (Int)

The line index in the diff to which the comment applies.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request associated with this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequestReview (PullRequestReview)

The pull request review associated with this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

replyTo (PullRequestReviewComment)

The comment this is a reply to.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository associated with this node.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path permalink for this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

state (PullRequestReviewCommentState!)

Identifies the state of the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies when the comment was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL permalink for this review comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanMinimize (Boolean!)

Check if the current viewer can minimize this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewCommentConnection\n

\n

The connection type for PullRequestReviewComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestReviewCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestReviewComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestReviewComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewConnection\n

\n

The connection type for PullRequestReview.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestReviewEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestReview])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewContributionsByRepository\n

\n

This aggregates pull request reviews made by a user within one repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contributions (CreatedPullRequestReviewContributionConnection!)

The pull request review contributions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ContributionOrder)

\n

Ordering options for contributions returned from the connection.

\n\n
\n\n
\n\n\n

repository (Repository!)

The repository in which the pull request reviews were made.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestReview)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewThread\n

\n

A threaded list of comments for a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

comments (PullRequestReviewCommentConnection!)

A list of pull request comments associated with the thread.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

skip (Int)

\n

Skips the first n elements in the list.

\n\n
\n\n
\n\n\n

diffSide (DiffSide!)

The side of the diff on which this thread was placed.

\n\n\n\n\n\n\n\n\n\n\n\n

isCollapsed (Boolean!)

Whether or not the thread has been collapsed (outdated or resolved).

\n\n\n\n\n\n\n\n\n\n\n\n

isOutdated (Boolean!)

Indicates whether this thread was outdated by newer changes.

\n\n\n\n\n\n\n\n\n\n\n\n

isResolved (Boolean!)

Whether this thread has been resolved.

\n\n\n\n\n\n\n\n\n\n\n\n

line (Int)

The line in the file to which this thread refers.

\n\n\n\n\n\n\n\n\n\n\n\n

originalLine (Int)

The original line in the file to which this thread refers.

\n\n\n\n\n\n\n\n\n\n\n\n

originalStartLine (Int)

The original start line in the file to which this thread refers (multi-line only).

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

Identifies the file path of this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

Identifies the pull request associated with this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

Identifies the repository associated with this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

resolvedBy (User)

The user who resolved this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

startDiffSide (DiffSide)

The side of the diff that the first line of the thread starts on (multi-line only).

\n\n\n\n\n\n\n\n\n\n\n\n

startLine (Int)

The start line in the file to which this thread refers (multi-line only).

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReply (Boolean!)

Indicates whether the current viewer can reply to this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanResolve (Boolean!)

Whether or not the viewer can resolve this thread.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUnresolve (Boolean!)

Whether or not the viewer can unresolve this thread.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewThreadConnection\n

\n

Review comment threads for a pull request review.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestReviewThreadEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestReviewThread])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestReviewThreadEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestReviewThread)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestRevisionMarker\n

\n

Represents the latest point in the pull request timeline for which the viewer has seen the pull request's commits.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

lastSeenCommit (Commit!)

The last commit the viewer has seen.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

The pull request to which the marker belongs.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineConnection\n

\n

The connection type for PullRequestTimelineItem.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestTimelineItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestTimelineItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestTimelineItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineItemsConnection\n

\n

The connection type for PullRequestTimelineItems.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PullRequestTimelineItemsEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

filteredCount (Int!)

Identifies the count of items after applying before and after filters.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PullRequestTimelineItems])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageCount (Int!)

Identifies the count of items after applying before/after filters and first/last/skip slicing.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the timeline was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PullRequestTimelineItemsEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PullRequestTimelineItems)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Push\n

\n

A Git push.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

nextSha (GitObjectID)

The SHA after the push.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI!)

The permalink for this push.

\n\n\n\n\n\n\n\n\n\n\n\n

previousSha (GitObjectID)

The SHA before the push.

\n\n\n\n\n\n\n\n\n\n\n\n

pusher (User!)

The user who pushed.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository that was pushed to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PushAllowance\n

\n

A team, user or app who has the ability to push to a protected branch.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (PushAllowanceActor)

The actor that can push.

\n\n\n\n\n\n\n\n\n\n\n\n

branchProtectionRule (BranchProtectionRule)

Identifies the branch protection rule associated with the allowed user or team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PushAllowanceConnection\n

\n

The connection type for PushAllowance.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([PushAllowanceEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([PushAllowance])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n PushAllowanceEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (PushAllowance)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RateLimit\n

\n

Represents the client's rate limit.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cost (Int!)

The point cost for the current query counting against the rate limit.

\n\n\n\n\n\n\n\n\n\n\n\n

limit (Int!)

The maximum number of points the client is permitted to consume in a 60 minute window.

\n\n\n\n\n\n\n\n\n\n\n\n

nodeCount (Int!)

The maximum number of nodes this query may return.

\n\n\n\n\n\n\n\n\n\n\n\n

remaining (Int!)

The number of points remaining in the current rate limit window.

\n\n\n\n\n\n\n\n\n\n\n\n

resetAt (DateTime!)

The time at which the current rate limit window resets in UTC epoch seconds.

\n\n\n\n\n\n\n\n\n\n\n\n

used (Int!)

The number of points used in the current rate limit window.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactingUserConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReactingUserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactingUserEdge\n

\n

Represents a user that's made a reaction.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

reactedAt (DateTime!)

The moment when the user made the reaction.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Reaction\n

\n

An emoji reaction to a particular piece of content.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

content (ReactionContent!)

Identifies the emoji reaction.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

reactable (Reactable!)

The reactable piece of content.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

Identifies the user who created this reaction.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactionConnection\n

\n

A list of reactions that have been left on the subject.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReactionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Reaction])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasReacted (Boolean!)

Whether or not the authenticated user has left a reaction on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Reaction)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReactionGroup\n

\n

A group of emoji reactions to a particular piece of content.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

content (ReactionContent!)

Identifies the emoji reaction.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime)

Identifies when the reaction was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (Reactable!)

The subject that was reacted to.

\n\n\n\n\n\n\n\n\n\n\n\n

users (ReactingUserConnection!)

Users who have reacted to the reaction subject with the emotion represented by this reaction group.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerHasReacted (Boolean!)

Whether or not the authenticated user has left a reaction on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReadyForReviewEvent\n

\n

Represents aready_for_reviewevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this ready for review event.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this ready for review event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Ref\n

\n

Represents a Git reference.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

associatedPullRequests (PullRequestConnection!)

A list of pull requests with this ref as the head ref.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

branchProtectionRule (BranchProtectionRule)

Branch protection rules for this ref.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The ref name.

\n\n\n\n\n\n\n\n\n\n\n\n

prefix (String!)

The ref's prefix, such as refs/heads/ or refs/tags/.

\n\n\n\n\n\n\n\n\n\n\n\n

refUpdateRule (RefUpdateRule)

Branch protection rules that are viewable by non-admins.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The repository the ref belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

target (GitObject)

The object the ref points to. Returns null when object does not exist.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RefConnection\n

\n

The connection type for Ref.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RefEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Ref])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RefEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Ref)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RefUpdateRule\n

\n

A ref update rules for a viewer.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

allowsDeletions (Boolean!)

Can this branch be deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

allowsForcePushes (Boolean!)

Are force pushes allowed on this branch.

\n\n\n\n\n\n\n\n\n\n\n\n

pattern (String!)

Identifies the protection rule pattern.

\n\n\n\n\n\n\n\n\n\n\n\n

requiredApprovingReviewCount (Int)

Number of approving reviews required to update matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiredStatusCheckContexts ([String])

List of required status check contexts that must pass for commits to be accepted to matching branches.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresLinearHistory (Boolean!)

Are merge commits prohibited from being pushed to this branch.

\n\n\n\n\n\n\n\n\n\n\n\n

requiresSignatures (Boolean!)

Are commits required to be signed.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanPush (Boolean!)

Can the viewer push to the branch.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReferencedEvent\n

\n

Represents areferencedevent on a given ReferencedSubject.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

commit (Commit)

Identifies the commit associated with thereferencedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

commitRepository (Repository!)

Identifies the repository associated with thereferencedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Reference originated in a different repository.

\n\n\n\n\n\n\n\n\n\n\n\n

isDirectReference (Boolean!)

Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (ReferencedSubject!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Release\n

\n

A release contains the content for a release.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (User)

The author of the release.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description of the release.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML)

The description of this release rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

isDraft (Boolean!)

Whether or not the release is a draft.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrerelease (Boolean!)

Whether or not the release is a prerelease.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The title of the release.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies the date and time when the release was created.

\n\n\n\n\n\n\n\n\n\n\n\n

releaseAssets (ReleaseAssetConnection!)

List of releases assets which are dependent on this release.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

name (String)

\n

A list of names to filter the assets by.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescriptionHTML (HTML)

A description of the release, rendered to HTML without any links in it.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

limit (Int)

\n

How many characters to return.

\n

The default value is 200.

\n
\n\n
\n\n\n

tag (Ref)

The Git tag the release points to.

\n\n\n\n\n\n\n\n\n\n\n\n

tagName (String!)

The name of the release's Git tag.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this issue.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseAsset\n

\n

A release asset contains the content for a release asset.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

contentType (String!)

The asset's content-type.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

downloadCount (Int!)

The number of times this asset was downloaded.

\n\n\n\n\n\n\n\n\n\n\n\n

downloadUrl (URI!)

Identifies the URL where you can download the release asset via the browser.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Identifies the title of the release asset.

\n\n\n\n\n\n\n\n\n\n\n\n

release (Release)

Release that the asset is associated with.

\n\n\n\n\n\n\n\n\n\n\n\n

size (Int!)

The size (in bytes) of the asset.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

uploadedBy (User!)

The user that performed the upload.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

Identifies the URL of the release asset.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseAssetConnection\n

\n

The connection type for ReleaseAsset.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReleaseAssetEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ReleaseAsset])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseAssetEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ReleaseAsset)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseConnection\n

\n

The connection type for Release.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReleaseEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Release])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReleaseEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Release)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RemovedFromProjectEvent\n

\n

Represents aremoved_from_projectevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Project referenced by event.

\n\n\n\n\n
\n

Preview notice

\n

project is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

projectColumnName (String!)

Column name referenced by this project event.

\n\n\n\n\n
\n

Preview notice

\n

projectColumnName is available under the Project event details preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RenamedTitleEvent\n

\n

Represents arenamedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

currentTitle (String!)

Identifies the current title of the issue or pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

previousTitle (String!)

Identifies the previous title of the issue or pull request.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (RenamedTitleSubject!)

Subject that was renamed.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReopenedEvent\n

\n

Represents areopenedevent on any Closable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

closable (Closable!)

Object that was reopened.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoAccessAuditEntry\n

\n

Audit log entry for a repo.access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoAccessAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoAddMemberAuditEntry\n

\n

Audit log entry for a repo.add_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoAddMemberAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoAddTopicAuditEntry\n

\n

Audit log entry for a repo.add_topic event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topic (Topic)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topicName (String)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoArchivedAuditEntry\n

\n

Audit log entry for a repo.archived event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoArchivedAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoChangeMergeSettingAuditEntry\n

\n

Audit log entry for a repo.change_merge_setting event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isEnabled (Boolean)

Whether the change was to enable (true) or disable (false) the merge type.

\n\n\n\n\n\n\n\n\n\n\n\n

mergeType (RepoChangeMergeSettingAuditEntryMergeType)

The merge method affected by the change.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.disable_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.disable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableContributorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.disable_contributors_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigDisableSockpuppetDisallowedAuditEntry\n

\n

Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.enable_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableCollaboratorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.enable_collaborators_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableContributorsOnlyAuditEntry\n

\n

Audit log entry for a repo.config.enable_contributors_only event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigEnableSockpuppetDisallowedAuditEntry\n

\n

Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigLockAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.lock_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoConfigUnlockAnonymousGitAccessAuditEntry\n

\n

Audit log entry for a repo.config.unlock_anonymous_git_access event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoCreateAuditEntry\n

\n

Audit log entry for a repo.create event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

forkParentName (String)

The name of the parent repository for this forked repository.

\n\n\n\n\n\n\n\n\n\n\n\n

forkSourceName (String)

The name of the root repository for this netork.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoCreateAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoDestroyAuditEntry\n

\n

Audit log entry for a repo.destroy event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoDestroyAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoRemoveMemberAuditEntry\n

\n

Audit log entry for a repo.remove_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

visibility (RepoRemoveMemberAuditEntryVisibility)

The visibility of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepoRemoveTopicAuditEntry\n

\n

Audit log entry for a repo.remove_topic event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topic (Topic)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

topicName (String)

The name of the topic added to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Repository\n

\n

A repository contains the content for a project.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

assignableUsers (UserConnection!)

A list of users that can be assigned to issues in this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters users with query on user name and login.

\n\n
\n\n
\n\n\n

branchProtectionRules (BranchProtectionRuleConnection!)

A list of branch protection rules for this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

codeOfConduct (CodeOfConduct)

Returns the code of conduct for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

collaborators (RepositoryCollaboratorConnection)

A list of collaborators associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliation (CollaboratorAffiliation)

\n

Collaborators affiliation level with a repository.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters users with query on user name and login.

\n\n
\n\n
\n\n\n

commitComments (CommitCommentConnection!)

A list of commit comments associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

contactLinks ([RepositoryContactLink!])

Returns a list of contact links associated to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

defaultBranchRef (Ref)

The Ref associated with the repository's default branch.

\n\n\n\n\n\n\n\n\n\n\n\n

deleteBranchOnMerge (Boolean!)

Whether or not branches are automatically deleted when merged in this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

dependencyGraphManifests (DependencyGraphManifestConnection)

A list of dependency manifests contained in the repository.

\n\n\n\n\n
\n

Preview notice

\n

dependencyGraphManifests is available under the Access to a repositories dependency graph preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

dependenciesAfter (String)

\n

Cursor to paginate dependencies.

\n\n
\n\n
\n

dependenciesFirst (Int)

\n

Number of dependencies to fetch.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

withDependencies (Boolean)

\n

Flag to scope to only manifests with dependencies.

\n\n
\n\n
\n\n\n

deployKeys (DeployKeyConnection!)

A list of deploy keys that are on this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

deployments (DeploymentConnection!)

Deployments associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

environments ([String!])

\n

Environments to list deployments for.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (DeploymentOrder)

\n

Ordering options for deployments returned from the connection.

\n\n
\n\n
\n\n\n

description (String)

The description of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML!)

The description of the repository rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

diskUsage (Int)

The number of kilobytes this repository occupies on disk.

\n\n\n\n\n\n\n\n\n\n\n\n

forkCount (Int!)

Returns how many forks there are of this repository in the whole network.

\n\n\n\n\n\n\n\n\n\n\n\n

forks (RepositoryConnection!)

A list of direct forked repositories.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

fundingLinks ([FundingLink!]!)

The funding links for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

hasIssuesEnabled (Boolean!)

Indicates if the repository has issues feature enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

hasProjectsEnabled (Boolean!)

Indicates if the repository has the Projects feature enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

hasWikiEnabled (Boolean!)

Indicates if the repository has wiki feature enabled.

\n\n\n\n\n\n\n\n\n\n\n\n

homepageUrl (URI)

The repository's URL.

\n\n\n\n\n\n\n\n\n\n\n\n

interactionAbility (RepositoryInteractionAbility)

The interaction ability settings for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

isArchived (Boolean!)

Indicates if the repository is unmaintained.

\n\n\n\n\n\n\n\n\n\n\n\n

isBlankIssuesEnabled (Boolean!)

Returns true if blank issue creation is allowed.

\n\n\n\n\n\n\n\n\n\n\n\n

isDisabled (Boolean!)

Returns whether or not this repository disabled.

\n\n\n\n\n\n\n\n\n\n\n\n

isEmpty (Boolean!)

Returns whether or not this repository is empty.

\n\n\n\n\n\n\n\n\n\n\n\n

isFork (Boolean!)

Identifies if the repository is a fork.

\n\n\n\n\n\n\n\n\n\n\n\n

isInOrganization (Boolean!)

Indicates if a repository is either owned by an organization, or is a private fork of an organization repository.

\n\n\n\n\n\n\n\n\n\n\n\n

isLocked (Boolean!)

Indicates if the repository has been locked or not.

\n\n\n\n\n\n\n\n\n\n\n\n

isMirror (Boolean!)

Identifies if the repository is a mirror.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrivate (Boolean!)

Identifies if the repository is private.

\n\n\n\n\n\n\n\n\n\n\n\n

isSecurityPolicyEnabled (Boolean)

Returns true if this repository has a security policy.

\n\n\n\n\n\n\n\n\n\n\n\n

isTemplate (Boolean!)

Identifies if the repository is a template that can be used to generate new repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

isUserConfigurationRepository (Boolean!)

Is this repository a user configuration repository?.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue)

Returns a single issue from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the issue to be returned.

\n\n
\n\n
\n\n\n

issueOrPullRequest (IssueOrPullRequest)

Returns a single issue-like object from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the issue to be returned.

\n\n
\n\n
\n\n\n

issueTemplates ([IssueTemplate!])

Returns a list of issue templates associated to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

issues (IssueConnection!)

A list of issues that have been opened in the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

label (Label)

Returns a single label by name.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

Label name.

\n\n
\n\n
\n\n\n

labels (LabelConnection)

A list of labels associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LabelOrder)

\n

Ordering options for labels returned from the connection.

\n\n
\n\n
\n

query (String)

\n

If provided, searches labels by name and description.

\n\n
\n\n
\n\n\n

languages (LanguageConnection)

A list containing a breakdown of the language composition of the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (LanguageOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

licenseInfo (License)

The license associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

lockReason (RepositoryLockReason)

The reason the repository has been locked.

\n\n\n\n\n\n\n\n\n\n\n\n

mentionableUsers (UserConnection!)

A list of Users that can be mentioned in the context of the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

query (String)

\n

Filters users with query on user name and login.

\n\n
\n\n
\n\n\n

mergeCommitAllowed (Boolean!)

Whether or not PRs are merged with a merge commit on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

milestone (Milestone)

Returns a single milestone from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the milestone to be returned.

\n\n
\n\n
\n\n\n

milestones (MilestoneConnection)

A list of milestones associated with the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (MilestoneOrder)

\n

Ordering options for milestones.

\n\n
\n\n
\n

query (String)

\n

Filters milestones with a query on the title.

\n\n
\n\n
\n

states ([MilestoneState!])

\n

Filter by the state of the milestones.

\n\n
\n\n
\n\n\n

mirrorUrl (URI)

The repository's original mirror URL.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

nameWithOwner (String!)

The repository's name with owner.

\n\n\n\n\n\n\n\n\n\n\n\n

object (GitObject)

A Git object in the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

expression (String)

\n

A Git revision expression suitable for rev-parse.

\n\n
\n\n
\n

oid (GitObjectID)

\n

The Git object ID.

\n\n
\n\n
\n\n\n

openGraphImageUrl (URI!)

The image used to represent this repository in Open Graph data.

\n\n\n\n\n\n\n\n\n\n\n\n

owner (RepositoryOwner!)

The User owner of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

packages (PackageConnection!)

A list of packages under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

names ([String])

\n

Find packages by their names.

\n\n
\n\n
\n

orderBy (PackageOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n

packageType (PackageType)

\n

Filter registry package by type.

\n\n
\n\n
\n

repositoryId (ID)

\n

Find packages in a repository by ID.

\n\n
\n\n
\n\n\n

parent (Repository)

The repository parent, if this is a fork.

\n\n\n\n\n\n\n\n\n\n\n\n

pinnedIssues (PinnedIssueConnection)

A list of pinned issues for this repository.

\n\n\n\n\n
\n

Preview notice

\n

pinnedIssues is available under the Pinned issues preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

primaryLanguage (Language)

The primary language of the repository's code.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Find project by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The project number to find.

\n\n
\n\n
\n\n\n

projects (ProjectConnection!)

A list of projects under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ProjectOrder)

\n

Ordering options for projects returned from the connection.

\n\n
\n\n
\n

search (String)

\n

Query to search projects by, currently only searching by name.

\n\n
\n\n
\n

states ([ProjectState!])

\n

A list of states to filter the projects by.

\n\n
\n\n
\n\n\n

projectsResourcePath (URI!)

The HTTP path listing the repository's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

projectsUrl (URI!)

The HTTP URL listing the repository's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest)

Returns a single pull request from the current repository by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The number for the pull request to be returned.

\n\n
\n\n
\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests that have been opened in the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

pushedAt (DateTime)

Identifies when the repository was last pushed to.

\n\n\n\n\n\n\n\n\n\n\n\n

rebaseMergeAllowed (Boolean!)

Whether or not rebase-merging is enabled on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

ref (Ref)

Fetch a given ref from the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

qualifiedName (String!)

\n

The ref to retrieve. Fully qualified matches are checked in order\n(refs/heads/master) before falling back onto checks for short name matches (master).

\n\n
\n\n
\n\n\n

refs (RefConnection)

Fetch a list of refs from the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

direction (OrderDirection)

\n

DEPRECATED: use orderBy. The ordering direction.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RefOrder)

\n

Ordering options for refs returned from the connection.

\n\n
\n\n
\n

query (String)

\n

Filters refs with query on name.

\n\n
\n\n
\n

refPrefix (String!)

\n

A ref name prefix like refs/heads/, refs/tags/, etc.

\n\n
\n\n
\n\n\n

release (Release)

Lookup a single release given various criteria.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

tagName (String!)

\n

The name of the Tag the Release was created from.

\n\n
\n\n
\n\n\n

releases (ReleaseConnection!)

List of releases which are dependent on this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReleaseOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

repositoryTopics (RepositoryTopicConnection!)

A list of applied repository-topic associations for this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

securityPolicyUrl (URI)

The security policy URL.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescriptionHTML (HTML!)

A description of the repository, rendered to HTML without any links in it.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

limit (Int)

\n

How many characters to return.

\n

The default value is 200.

\n
\n\n
\n\n\n

squashMergeAllowed (Boolean!)

Whether or not squash-merging is enabled on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

sshUrl (GitSSHRemote!)

The SSH URL to clone this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazerCount (Int!)

Returns a count of how many stargazers there are on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazers (StargazerConnection!)

A list of users who have starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

submodules (SubmoduleConnection!)

Returns a list of all submodules in this repository parsed from the\n.gitmodules file as of the default branch's HEAD commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

tempCloneToken (String)

Temporary authentication token for cloning this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

templateRepository (Repository)

The repository from which this repository was generated, if any.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

usesCustomOpenGraphImage (Boolean!)

Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAdminister (Boolean!)

Indicates whether the viewer has admin permissions on this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateProjects (Boolean!)

Can the current viewer create new projects on this owner.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdateTopics (Boolean!)

Indicates whether the viewer can update the topics of this repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDefaultCommitEmail (String)

The last commit email for the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDefaultMergeMethod (PullRequestMergeMethod!)

The last used merge method by the viewer or the default for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerHasStarred (Boolean!)

Returns a boolean indicating whether the viewing user has starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerPermission (RepositoryPermission)

The users permission level on the repository. Will return null if authenticated as an GitHub App.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerPossibleCommitEmails ([String!])

A list of emails this viewer can commit with.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerabilityAlerts (RepositoryVulnerabilityAlertConnection)

A list of vulnerability alerts that are on this repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

watchers (UserConnection!)

A list of users watching the repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryCollaboratorConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryCollaboratorEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryCollaboratorEdge\n

\n

Represents a user who is a collaborator of a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (RepositoryPermission!)

The permission the user has on the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

permissionSources ([PermissionSource!])

A list of sources for the user's access to the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryConnection\n

\n

A list of repositories owned by the subject.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Repository])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n

totalDiskUsage (Int!)

The total size in kilobytes of all repositories in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryContactLink\n

\n

A repository contact link.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

about (String!)

The contact link purpose.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The contact link name.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The contact link URL.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Repository)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInteractionAbility\n

\n

Repository interaction limit that applies to this object.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

expiresAt (DateTime)

The time the currently active limit expires.

\n\n\n\n\n\n\n\n\n\n\n\n

limit (RepositoryInteractionLimit!)

The current limit that is enabled on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

origin (RepositoryInteractionLimitOrigin!)

The origin of the currently active interaction limit.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInvitation\n

\n

An invitation for a user to be added to a repository.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String)

The email address that received the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

invitee (User)

The user who received the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

inviter (User!)

The user who created the invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI!)

The permalink for this repository invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (RepositoryPermission!)

The permission granted on this repository by this invitation.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (RepositoryInfo)

The Repository the user is invited to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInvitationConnection\n

\n

The connection type for RepositoryInvitation.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryInvitationEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([RepositoryInvitation])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryInvitationEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (RepositoryInvitation)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryTopic\n

\n

A repository-topic connects a repository to a topic.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

resourcePath (URI!)

The HTTP path for this repository-topic.

\n\n\n\n\n\n\n\n\n\n\n\n

topic (Topic!)

The topic.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this repository-topic.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryTopicConnection\n

\n

The connection type for RepositoryTopic.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryTopicEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([RepositoryTopic])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryTopicEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (RepositoryTopic)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVisibilityChangeDisableAuditEntry\n

\n

Audit log entry for a repository_visibility_change.disable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVisibilityChangeEnableAuditEntry\n

\n

Audit log entry for a repository_visibility_change.enable event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseResourcePath (URI)

The HTTP path for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseSlug (String)

The slug of the enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

enterpriseUrl (URI)

The HTTP URL for this enterprise.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVulnerabilityAlert\n

\n

A alert for a repository with an affected vulnerability.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

When was the alert created?.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissReason (String)

The reason the alert was dismissed.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissedAt (DateTime)

When was the alert dimissed?.

\n\n\n\n\n\n\n\n\n\n\n\n

dismisser (User)

The user who dismissed the alert.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The associated repository.

\n\n\n\n\n\n\n\n\n\n\n\n

securityAdvisory (SecurityAdvisory)

The associated security advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

securityVulnerability (SecurityVulnerability)

The associated security vulnerablity.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableManifestFilename (String!)

The vulnerable manifest filename.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableManifestPath (String!)

The vulnerable manifest path.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableRequirements (String)

The vulnerable requirements.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVulnerabilityAlertConnection\n

\n

The connection type for RepositoryVulnerabilityAlert.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([RepositoryVulnerabilityAlertEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([RepositoryVulnerabilityAlert])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RepositoryVulnerabilityAlertEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (RepositoryVulnerabilityAlert)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n RestrictedContribution\n

\n

Represents a private contribution a user made on GitHub.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isRestricted (Boolean!)

Whether this contribution is associated with a record you do not have access to. For\nexample, your own 'first issue' contribution may have been made on a repository you can no\nlonger access.

\n\n\n\n\n\n\n\n\n\n\n\n

occurredAt (DateTime!)

When this contribution was made.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who made this contribution.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissalAllowance\n

\n

A team or user who has the ability to dismiss a review on a protected branch.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (ReviewDismissalAllowanceActor)

The actor that can dismiss.

\n\n\n\n\n\n\n\n\n\n\n\n

branchProtectionRule (BranchProtectionRule)

Identifies the branch protection rule associated with the allowed user or team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissalAllowanceConnection\n

\n

The connection type for ReviewDismissalAllowance.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReviewDismissalAllowanceEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ReviewDismissalAllowance])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissalAllowanceEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ReviewDismissalAllowance)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewDismissedEvent\n

\n

Represents areview_dismissedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissalMessage (String)

Identifies the optional message associated with thereview_dismissedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

dismissalMessageHTML (String)

Identifies the optional message associated with the event, rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

previousReviewState (PullRequestReviewState!)

Identifies the previous state of the review with thereview_dismissedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequestCommit (PullRequestCommit)

Identifies the commit which caused the review to become stale.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this review dismissed event.

\n\n\n\n\n\n\n\n\n\n\n\n

review (PullRequestReview)

Identifies the review associated with thereview_dismissedevent.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this review dismissed event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequest\n

\n

A request for a user to review a pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

asCodeOwner (Boolean!)

Whether this request was created for a code owner.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

Identifies the pull request associated with this review request.

\n\n\n\n\n\n\n\n\n\n\n\n

requestedReviewer (RequestedReviewer)

The reviewer that is requested.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestConnection\n

\n

The connection type for ReviewRequest.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([ReviewRequestEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([ReviewRequest])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (ReviewRequest)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestRemovedEvent\n

\n

Represents anreview_request_removedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

requestedReviewer (RequestedReviewer)

Identifies the reviewer whose review request was removed.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewRequestedEvent\n

\n

Represents anreview_requestedevent on a given pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

pullRequest (PullRequest!)

PullRequest referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n

requestedReviewer (RequestedReviewer)

Identifies the reviewer whose review was requested.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ReviewStatusHovercardContext\n

\n

A hovercard context with a message describing the current code review state of the pull\nrequest.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewDecision (PullRequestReviewDecision)

The current status of the pull request with respect to code review.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SavedReply\n

\n

A Saved Reply is text a user can use to reply quickly.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

body (String!)

The body of the saved reply.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The saved reply body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

The title of the saved reply.

\n\n\n\n\n\n\n\n\n\n\n\n

user (Actor)

The user that saved this reply.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SavedReplyConnection\n

\n

The connection type for SavedReply.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SavedReplyEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SavedReply])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SavedReplyEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SavedReply)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SearchResultItemConnection\n

\n

A list of results that matched against a search query.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

codeCount (Int!)

The number of pieces of code that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

edges ([SearchResultItemEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

issueCount (Int!)

The number of issues that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SearchResultItem])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryCount (Int!)

The number of repositories that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

userCount (Int!)

The number of users that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n

wikiCount (Int!)

The number of wiki pages that matched the search query.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SearchResultItemEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SearchResultItem)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n

textMatches ([TextMatch])

Text matches on the result found.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisory\n

\n

A GitHub Security Advisory.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String!)

This is a long plaintext description of the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

ghsaId (String!)

The GitHub Security Advisory ID.

\n\n\n\n\n\n\n\n\n\n\n\n

identifiers ([SecurityAdvisoryIdentifier!]!)

A list of identifiers for this advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

origin (String!)

The organization that originated the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

permalink (URI)

The permalink for the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime!)

When the advisory was published.

\n\n\n\n\n\n\n\n\n\n\n\n

references ([SecurityAdvisoryReference!]!)

A list of references for this advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

severity (SecurityAdvisorySeverity!)

The severity of the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

summary (String!)

A short plaintext summary of the advisory.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

When the advisory was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerabilities (SecurityVulnerabilityConnection!)

Vulnerabilities associated with this Advisory.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

ecosystem (SecurityAdvisoryEcosystem)

\n

An ecosystem to filter vulnerabilities by.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SecurityVulnerabilityOrder)

\n

Ordering options for the returned topics.

\n\n
\n\n
\n

package (String)

\n

A package name to filter vulnerabilities by.

\n\n
\n\n
\n

severities ([SecurityAdvisorySeverity!])

\n

A list of severities to filter vulnerabilities by.

\n\n
\n\n
\n\n\n

withdrawnAt (DateTime)

When the advisory was withdrawn, if it has been withdrawn.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryConnection\n

\n

The connection type for SecurityAdvisory.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SecurityAdvisoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SecurityAdvisory])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SecurityAdvisory)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryIdentifier\n

\n

A GitHub Security Advisory Identifier.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

type (String!)

The identifier type, e.g. GHSA, CVE.

\n\n\n\n\n\n\n\n\n\n\n\n

value (String!)

The identifier.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryPackage\n

\n

An individual package.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

ecosystem (SecurityAdvisoryEcosystem!)

The ecosystem the package belongs to, e.g. RUBYGEMS, NPM.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The package name.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryPackageVersion\n

\n

An individual package version.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

identifier (String!)

The package name or version.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityAdvisoryReference\n

\n

A GitHub Security Advisory Reference.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

url (URI!)

A publicly accessible reference.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityVulnerability\n

\n

An individual vulnerability within an Advisory.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

advisory (SecurityAdvisory!)

The Advisory associated with this Vulnerability.

\n\n\n\n\n\n\n\n\n\n\n\n

firstPatchedVersion (SecurityAdvisoryPackageVersion)

The first version containing a fix for the vulnerability.

\n\n\n\n\n\n\n\n\n\n\n\n

package (SecurityAdvisoryPackage!)

A description of the vulnerable package.

\n\n\n\n\n\n\n\n\n\n\n\n

severity (SecurityAdvisorySeverity!)

The severity of the vulnerability within this package.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

When the vulnerability was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

vulnerableVersionRange (String!)

A string that describes the vulnerable package versions.\nThis string follows a basic syntax with a few forms.

\n
    \n
  • = 0.2.0 denotes a single vulnerable version.
  • \n
  • <= 1.0.8 denotes a version range up to and including the specified version
  • \n
  • < 0.1.11 denotes a version range up to, but excluding, the specified version
  • \n
  • >= 4.3.0, < 4.3.5 denotes a version range with a known minimum and maximum version.
  • \n
  • >= 0.0.1 denotes a version range with a known minimum, but no known maximum.
  • \n

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityVulnerabilityConnection\n

\n

The connection type for SecurityVulnerability.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SecurityVulnerabilityEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SecurityVulnerability])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SecurityVulnerabilityEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SecurityVulnerability)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SmimeSignature\n

\n

Represents an S/MIME signature on a Commit or Tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String!)

Email used to sign this object.

\n\n\n\n\n\n\n\n\n\n\n\n

isValid (Boolean!)

True if the signature is valid and verified by GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String!)

Payload for GPG signing object. Raw ODB object without the signature header.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (String!)

ASCII-armored signature header from object.

\n\n\n\n\n\n\n\n\n\n\n\n

signer (User)

GitHub user corresponding to the email signing this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (GitSignatureState!)

The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

\n\n\n\n\n\n\n\n\n\n\n\n

wasSignedByGitHub (Boolean!)

True if the signature was made with GitHub's signing key.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsListing\n

\n

A GitHub Sponsors listing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescription (String!)

The full description of the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

fullDescriptionHTML (HTML!)

The full description of the listing rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The listing's full name.

\n\n\n\n\n\n\n\n\n\n\n\n

shortDescription (String!)

The short description of the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

slug (String!)

The short name of the listing.

\n\n\n\n\n\n\n\n\n\n\n\n

tiers (SponsorsTierConnection)

The published tiers for this GitHub Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorsTierOrder)

\n

Ordering options for Sponsors tiers returned from the connection.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTier\n

\n

A GitHub Sponsors tier associated with a GitHub Sponsors listing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

adminInfo (SponsorsTierAdminInfo)

SponsorsTier information only visible to users that can administer the associated Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String!)

The description of the tier.

\n\n\n\n\n\n\n\n\n\n\n\n

descriptionHTML (HTML!)

The tier description rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

monthlyPriceInCents (Int!)

How much this tier costs per month in cents.

\n\n\n\n\n\n\n\n\n\n\n\n

monthlyPriceInDollars (Int!)

How much this tier costs per month in dollars.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the tier.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorsListing (SponsorsListing!)

The sponsors listing that this tier belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTierAdminInfo\n

\n

SponsorsTier information only visible to users that can administer the associated Sponsors listing.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n
NameDescription

sponsorships (SponsorshipConnection!)

The sponsorships associated with this tier.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includePrivate (Boolean)

\n

Whether or not to include private sponsorships in the result set.

\n

The default value is false.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTierConnection\n

\n

The connection type for SponsorsTier.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SponsorsTierEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([SponsorsTier])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorsTierEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (SponsorsTier)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Sponsorship\n

\n

A sponsorship relationship between a sponsor and a maintainer.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

maintainer (User!)

The entity that is being sponsored.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

maintainer is deprecated.

Sponsorship.maintainer will be removed. Use Sponsorship.sponsorable instead. Removal on 2020-04-01 UTC.

\n
\n\n\n\n\n\n\n

privacyLevel (SponsorshipPrivacy!)

The privacy level for this sponsorship.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsor (User)

The user that is sponsoring. Returns null if the sponsorship is private or if sponsor is not a user.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

sponsor is deprecated.

Sponsorship.sponsor will be removed. Use Sponsorship.sponsorEntity instead. Removal on 2020-10-01 UTC.

\n
\n\n\n\n\n\n\n

sponsorEntity (Sponsor)

The user or organization that is sponsoring, if you have permission to view them.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorable (Sponsorable!)

The entity that is being sponsored.

\n\n\n\n\n\n\n\n\n\n\n\n

tier (SponsorsTier)

The associated sponsorship tier.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorshipConnection\n

\n

The connection type for Sponsorship.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SponsorshipEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Sponsorship])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SponsorshipEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Sponsorship)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StargazerConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([StargazerEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StargazerEdge\n

\n

Represents a user that's starred a repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

starredAt (DateTime!)

Identifies when the item was starred.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StarredRepositoryConnection\n

\n

The connection type for Repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([StarredRepositoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

isOverLimit (Boolean!)

Is the list of stars for this user truncated? This is true for users that have many stars.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Repository])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StarredRepositoryEdge\n

\n

Represents a starred repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

starredAt (DateTime!)

Identifies when the item was starred.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Status\n

\n

Represents a commit status.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

combinedContexts (StatusCheckRollupContextConnection!)

A list of status contexts and check runs for this commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

commit (Commit)

The commit this status is attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

context (StatusContext)

Looks up an individual status context by context name.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

The context name.

\n\n
\n\n
\n\n\n

contexts ([StatusContext!]!)

The individual status contexts for this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (StatusState!)

The combined commit status.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusCheckRollup\n

\n

Represents the rollup for both the check runs and status for a commit.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

commit (Commit)

The commit the status and check runs are attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

contexts (StatusCheckRollupContextConnection!)

A list of status contexts and check runs for this commit.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

state (StatusState!)

The combined status for the commit.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusCheckRollupContextConnection\n

\n

The connection type for StatusCheckRollupContext.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([StatusCheckRollupContextEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([StatusCheckRollupContext])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusCheckRollupContextEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (StatusCheckRollupContext)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n StatusContext\n

\n

Represents an individual commit status context.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

avatarUrl (URI)

The avatar of the OAuth application or the user that created the status.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n

The default value is 40.

\n
\n\n
\n\n\n

commit (Commit)

This commit this status context is attached to.

\n\n\n\n\n\n\n\n\n\n\n\n

context (String!)

The name of this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

creator (Actor)

The actor who created this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description for this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

state (StatusState!)

The state of this status context.

\n\n\n\n\n\n\n\n\n\n\n\n

targetUrl (URI)

The URL for this status context.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Submodule\n

\n

A pointer to a repository at a specific revision embedded inside another repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

branch (String)

The branch of the upstream submodule for tracking updates.

\n\n\n\n\n\n\n\n\n\n\n\n

gitUrl (URI!)

The git URL of the submodule repository.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the submodule in .gitmodules.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String!)

The path in the superproject that this submodule is located in.

\n\n\n\n\n\n\n\n\n\n\n\n

subprojectCommitOid (GitObjectID)

The commit revision of the subproject repository being tracked by the submodule.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SubmoduleConnection\n

\n

The connection type for Submodule.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([SubmoduleEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Submodule])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SubmoduleEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Submodule)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SubscribedEvent\n

\n

Represents asubscribedevent on a given Subscribable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subscribable (Subscribable!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n SuggestedReviewer\n

\n

A suggestion to review a pull request based on a user's commit history and review comments.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

isAuthor (Boolean!)

Is this suggestion based on past commits?.

\n\n\n\n\n\n\n\n\n\n\n\n

isCommenter (Boolean!)

Is this suggestion based on past review comments?.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewer (User!)

Identifies the user suggested to review the pull request.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Tag\n

\n

Represents a Git tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

commitResourcePath (URI!)

The HTTP path for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitUrl (URI!)

The HTTP URL for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

message (String)

The Git tag message.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The Git tag name.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

The Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the Git object belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

tagger (GitActor)

Details about the tag author.

\n\n\n\n\n\n\n\n\n\n\n\n

target (GitObject!)

The Git object the tag points to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Team\n

\n

A team of users in an organization.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

ancestors (TeamConnection!)

A list of teams that are ancestors of this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

avatarUrl (URI)

A URL pointing to the team's avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size in pixels of the resulting square image.

\n

The default value is 400.

\n
\n\n
\n\n\n

childTeams (TeamConnection!)

List of child teams belonging to this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

immediateOnly (Boolean)

\n

Whether to list immediate child teams or all descendant child teams.

\n

The default value is true.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamOrder)

\n

Order for connection.

\n\n
\n\n
\n

userLogins ([String!])

\n

User logins to filter by.

\n\n
\n\n
\n\n\n

combinedSlug (String!)

The slug corresponding to the organization and team.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

description (String)

The description of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

discussion (TeamDiscussion)

Find a team discussion by its number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The sequence number of the discussion to find.

\n\n
\n\n
\n\n\n

discussions (TeamDiscussionConnection!)

A list of team discussions.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isPinned (Boolean)

\n

If provided, filters discussions according to whether or not they are pinned.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamDiscussionOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

discussionsResourcePath (URI!)

The HTTP path for team discussions.

\n\n\n\n\n\n\n\n\n\n\n\n

discussionsUrl (URI!)

The HTTP URL for team discussions.

\n\n\n\n\n\n\n\n\n\n\n\n

editTeamResourcePath (URI!)

The HTTP path for editing this team.

\n\n\n\n\n\n\n\n\n\n\n\n

editTeamUrl (URI!)

The HTTP URL for editing this team.

\n\n\n\n\n\n\n\n\n\n\n\n

invitations (OrganizationInvitationConnection)

A list of pending invitations for users to this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

memberStatuses (UserStatusConnection!)

Get the status messages members of this entity have set that are either public or visible only to the organization.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (UserStatusOrder)

\n

Ordering options for user statuses returned from the connection.

\n\n
\n\n
\n\n\n

members (TeamMemberConnection!)

A list of users who are members of this team.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

membership (TeamMembershipType)

\n

Filter by membership type.

\n

The default value is ALL.

\n
\n\n
\n

orderBy (TeamMemberOrder)

\n

Order for the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n

role (TeamMemberRole)

\n

Filter by team member role.

\n\n
\n\n
\n\n\n

membersResourcePath (URI!)

The HTTP path for the team' members.

\n\n\n\n\n\n\n\n\n\n\n\n

membersUrl (URI!)

The HTTP URL for the team' members.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamResourcePath (URI!)

The HTTP path creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

newTeamUrl (URI!)

The HTTP URL creating a new team.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization!)

The organization that owns this team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeam (Team)

The parent team of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

privacy (TeamPrivacy!)

The level of privacy the team has.

\n\n\n\n\n\n\n\n\n\n\n\n

repositories (TeamRepositoryConnection!)

A list of repositories this team has access to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamRepositoryOrder)

\n

Order for the connection.

\n\n
\n\n
\n

query (String)

\n

The search string to look for.

\n\n
\n\n
\n\n\n

repositoriesResourcePath (URI!)

The HTTP path for this team's repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoriesUrl (URI!)

The HTTP URL for this team's repositories.

\n\n\n\n\n\n\n\n\n\n\n\n

resourcePath (URI!)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

reviewRequestDelegationAlgorithm (TeamReviewAssignmentAlgorithm)

What algorithm is used for review assignment for this team.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationAlgorithm is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

reviewRequestDelegationEnabled (Boolean!)

True if review assignment is enabled for this team.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationEnabled is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

reviewRequestDelegationMemberCount (Int)

How many team members are required for review assignment for this team.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationMemberCount is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

reviewRequestDelegationNotifyTeam (Boolean!)

When assigning team members via delegation, whether the entire team should be notified as well.

\n\n\n\n\n
\n

Preview notice

\n

reviewRequestDelegationNotifyTeam is available under the Team review assignments preview. During the preview period, the API may change without notice.

\n
\n\n\n\n\n\n\n\n\n

slug (String!)

The slug corresponding to the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsResourcePath (URI!)

The HTTP path for this team's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

teamsUrl (URI!)

The HTTP URL for this team's teams.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanAdminister (Boolean!)

Team is adminable by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamAddMemberAuditEntry\n

\n

Audit log entry for a team.add_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamAddRepositoryAuditEntry\n

\n

Audit log entry for a team.add_repository event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamChangeParentTeamAuditEntry\n

\n

Audit log entry for a team.change_parent_team event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeam (Team)

The new parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamName (String)

The name of the new parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamNameWas (String)

The name of the former parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamResourcePath (URI)

The HTTP path for the parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamUrl (URI)

The HTTP URL for the parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamWas (Team)

The former parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamWasResourcePath (URI)

The HTTP path for the previous parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

parentTeamWasUrl (URI)

The HTTP URL for the previous parent team.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamConnection\n

\n

The connection type for Team.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Team])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussion\n

\n

A team discussion.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the discussion's team.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyVersion (String!)

Identifies the discussion body hash.

\n\n\n\n\n\n\n\n\n\n\n\n

comments (TeamDiscussionCommentConnection!)

A list of comments on this discussion.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

fromComment (Int)

\n

When provided, filters the connection such that results begin with the comment with this number.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (TeamDiscussionCommentOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

commentsResourcePath (URI!)

The HTTP path for discussion comments.

\n\n\n\n\n\n\n\n\n\n\n\n

commentsUrl (URI!)

The HTTP URL for discussion comments.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

isPinned (Boolean!)

Whether or not the discussion is pinned.

\n\n\n\n\n\n\n\n\n\n\n\n

isPrivate (Boolean!)

Whether or not the discussion is only visible to team members and org admins.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the discussion within its team.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team!)

The team that defines the context of this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

title (String!)

The title of the discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanPin (Boolean!)

Whether or not the current viewer can pin this discussion.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSubscribe (Boolean!)

Check if the viewer is able to change their subscription status for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerSubscription (SubscriptionState)

Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionComment\n

\n

A comment on a team discussion.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

author (Actor)

The actor who authored the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

authorAssociation (CommentAuthorAssociation!)

Author's association with the comment's team.

\n\n\n\n\n\n\n\n\n\n\n\n

body (String!)

The body as Markdown.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyHTML (HTML!)

The body rendered to HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyText (String!)

The body rendered to text.

\n\n\n\n\n\n\n\n\n\n\n\n

bodyVersion (String!)

The current version of the body content.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

createdViaEmail (Boolean!)

Check if this comment was created via an email reply.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

discussion (TeamDiscussion!)

The discussion this comment is about.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited the comment.

\n\n\n\n\n\n\n\n\n\n\n\n

includesCreatedEdit (Boolean!)

Check if this comment was edited and includes an edit with the creation data.

\n\n\n\n\n\n\n\n\n\n\n\n

lastEditedAt (DateTime)

The moment the editor made the last edit.

\n\n\n\n\n\n\n\n\n\n\n\n

number (Int!)

Identifies the comment number.

\n\n\n\n\n\n\n\n\n\n\n\n

publishedAt (DateTime)

Identifies when the comment was published at.

\n\n\n\n\n\n\n\n\n\n\n\n

reactionGroups ([ReactionGroup!])

A list of reactions grouped by content left on the subject.

\n\n\n\n\n\n\n\n\n\n\n\n

reactions (ReactionConnection!)

A list of Reactions left on the Issue.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

content (ReactionContent)

\n

Allows filtering Reactions by emoji.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ReactionOrder)

\n

Allows specifying the order in which reactions are returned.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

userContentEdits (UserContentEditConnection)

A list of edits to this content.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

viewerCanDelete (Boolean!)

Check if the current viewer can delete this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanReact (Boolean!)

Can user react to this subject.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanUpdate (Boolean!)

Check if the current viewer can update this object.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCannotUpdateReasons ([CommentCannotUpdateReason!]!)

Reasons why the current viewer can not update this comment.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerDidAuthor (Boolean!)

Did the viewer author this comment.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionCommentConnection\n

\n

The connection type for TeamDiscussionComment.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamDiscussionCommentEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([TeamDiscussionComment])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionCommentEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (TeamDiscussionComment)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionConnection\n

\n

The connection type for TeamDiscussion.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamDiscussionEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([TeamDiscussion])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamDiscussionEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (TeamDiscussion)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (Team)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamMemberConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamMemberEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamMemberEdge\n

\n

Represents a user who is a member of a team.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

memberAccessResourcePath (URI!)

The HTTP path to the organization's member access page.

\n\n\n\n\n\n\n\n\n\n\n\n

memberAccessUrl (URI!)

The HTTP URL to the organization's member access page.

\n\n\n\n\n\n\n\n\n\n\n\n

role (TeamMemberRole!)

The role the member has on the team.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRemoveMemberAuditEntry\n

\n

Audit log entry for a team.remove_member event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRemoveRepositoryAuditEntry\n

\n

Audit log entry for a team.remove_repository event.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

action (String!)

The action name.

\n\n\n\n\n\n\n\n\n\n\n\n

actor (AuditEntryActor)

The user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorIp (String)

The IP address of the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLocation (ActorLocation)

A readable representation of the actor's location.

\n\n\n\n\n\n\n\n\n\n\n\n

actorLogin (String)

The username of the user who initiated the action.

\n\n\n\n\n\n\n\n\n\n\n\n

actorResourcePath (URI)

The HTTP path for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

actorUrl (URI)

The HTTP URL for the actor.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (PreciseDateTime!)

The time the action was initiated.

\n\n\n\n\n\n\n\n\n\n\n\n

isLdapMapped (Boolean)

Whether the team was mapped to an LDAP Group.

\n\n\n\n\n\n\n\n\n\n\n\n

operationType (OperationType)

The corresponding operation type for the action.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The Organization associated with the Audit Entry.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationName (String)

The name of the Organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationResourcePath (URI)

The HTTP path for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

organizationUrl (URI)

The HTTP URL for the organization.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository)

The repository associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryName (String)

The name of the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryResourcePath (URI)

The HTTP path for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

repositoryUrl (URI)

The HTTP URL for the repository.

\n\n\n\n\n\n\n\n\n\n\n\n

team (Team)

The team associated with the action.

\n\n\n\n\n\n\n\n\n\n\n\n

teamName (String)

The name of the team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamResourcePath (URI)

The HTTP path for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

teamUrl (URI)

The HTTP URL for this team.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

The user affected by the action.

\n\n\n\n\n\n\n\n\n\n\n\n

userLogin (String)

For actions involving two users, the actor is the initiator and the user is the affected user.

\n\n\n\n\n\n\n\n\n\n\n\n

userResourcePath (URI)

The HTTP path for the user.

\n\n\n\n\n\n\n\n\n\n\n\n

userUrl (URI)

The HTTP URL for the user.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRepositoryConnection\n

\n

The connection type for Repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([TeamRepositoryEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([Repository])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TeamRepositoryEdge\n

\n

Represents a team repository.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

permission (RepositoryPermission!)

The permission level the team has on the repository.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TextMatch\n

\n

A text match within a search result.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

fragment (String!)

The specific text fragment within the property matched on.

\n\n\n\n\n\n\n\n\n\n\n\n

highlights ([TextMatchHighlight!]!)

Highlights within the matched fragment.

\n\n\n\n\n\n\n\n\n\n\n\n

property (String!)

The property matched on.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TextMatchHighlight\n

\n

Represents a single highlight in a search result match.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

beginIndice (Int!)

The indice in the fragment where the matched text begins.

\n\n\n\n\n\n\n\n\n\n\n\n

endIndice (Int!)

The indice in the fragment where the matched text ends.

\n\n\n\n\n\n\n\n\n\n\n\n

text (String!)

The text matched.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Topic\n

\n

A topic aggregates entities that are related to a subject.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

name (String!)

The topic's name.

\n\n\n\n\n\n\n\n\n\n\n\n

relatedTopics ([Topic!]!)

A list of related topics, including aliases of this topic, sorted with the most relevant\nfirst. Returns up to 10 Topics.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

first (Int)

\n

How many topics to return.

\n

The default value is 3.

\n
\n\n
\n\n\n

stargazerCount (Int!)

Returns a count of how many stargazers there are on this object.

\n\n\n\n\n\n\n\n\n\n\n\n

stargazers (StargazerConnection!)

A list of users who have starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n\n\n

viewerHasStarred (Boolean!)

Returns a boolean indicating whether the viewing user has starred this starrable.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TransferredEvent\n

\n

Represents atransferredevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

fromRepository (Repository)

The repository this came from.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n Tree\n

\n

Represents a Git tree.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

abbreviatedOid (String!)

An abbreviated version of the Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

commitResourcePath (URI!)

The HTTP path for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

commitUrl (URI!)

The HTTP URL for this Git object.

\n\n\n\n\n\n\n\n\n\n\n\n

entries ([TreeEntry!])

A list of tree entries.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

The Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the Git object belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n TreeEntry\n

\n

Represents a Git tree entry.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

extension (String)

The extension of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

isGenerated (Boolean!)

Whether or not this tree entry is generated.

\n\n\n\n\n\n\n\n\n\n\n\n

mode (Int!)

Entry file mode.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String!)

Entry file name.

\n\n\n\n\n\n\n\n\n\n\n\n

object (GitObject)

Entry file object.

\n\n\n\n\n\n\n\n\n\n\n\n

oid (GitObjectID!)

Entry file Git object ID.

\n\n\n\n\n\n\n\n\n\n\n\n

path (String)

The full path of the file.

\n\n\n\n\n\n\n\n\n\n\n\n

repository (Repository!)

The Repository the tree entry belongs to.

\n\n\n\n\n\n\n\n\n\n\n\n

submodule (Submodule)

If the TreeEntry is for a directory occupied by a submodule project, this returns the corresponding submodule.

\n\n\n\n\n\n\n\n\n\n\n\n

type (String!)

Entry file type.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnassignedEvent\n

\n

Represents anunassignedevent on any assignable object.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

assignable (Assignable!)

Identifies the assignable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n

assignee (Assignee)

Identifies the user or mannequin that was unassigned.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User)

Identifies the subject (user) who was unassigned.

\n\n\n\n\n\n\n
\n

Deprecation notice

\n

user is deprecated.

Assignees can now be mannequins. Use the assignee field instead. Removal on 2020-01-01 UTC.

\n
\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnknownSignature\n

\n

Represents an unknown signature on a Commit or Tag.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

email (String!)

Email used to sign this object.

\n\n\n\n\n\n\n\n\n\n\n\n

isValid (Boolean!)

True if the signature is valid and verified by GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

payload (String!)

Payload for GPG signing object. Raw ODB object without the signature header.

\n\n\n\n\n\n\n\n\n\n\n\n

signature (String!)

ASCII-armored signature header from object.

\n\n\n\n\n\n\n\n\n\n\n\n

signer (User)

GitHub user corresponding to the email signing this commit.

\n\n\n\n\n\n\n\n\n\n\n\n

state (GitSignatureState!)

The state of this signature. VALID if signature is valid and verified by\nGitHub, otherwise represents reason why signature is considered invalid.

\n\n\n\n\n\n\n\n\n\n\n\n

wasSignedByGitHub (Boolean!)

True if the signature was made with GitHub's signing key.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnlabeledEvent\n

\n

Represents anunlabeledevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

label (Label!)

Identifies the label associated with theunlabeledevent.

\n\n\n\n\n\n\n\n\n\n\n\n

labelable (Labelable!)

Identifies the Labelable associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnlockedEvent\n

\n

Represents anunlockedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

lockable (Lockable!)

Object that was unlocked.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnmarkedAsDuplicateEvent\n

\n

Represents anunmarked_as_duplicateevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

canonical (IssueOrPullRequest)

The authoritative issue or pull request which has been duplicated by another.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

duplicate (IssueOrPullRequest)

The issue or pull request which has been marked as a duplicate of another.

\n\n\n\n\n\n\n\n\n\n\n\n

isCrossRepository (Boolean!)

Canonical and duplicate belong to different repositories.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnpinnedEvent\n

\n

Represents anunpinnedevent on a given issue or pull request.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

issue (Issue!)

Identifies the issue associated with the event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UnsubscribedEvent\n

\n

Represents anunsubscribedevent on a given Subscribable.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subscribable (Subscribable!)

Object referenced by event.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n User\n

\n

A user is an individual's account on GitHub that owns repositories and can make new content.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

anyPinnableItems (Boolean!)

Determine if this repository owner has any items that can be pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

type (PinnableItemType)

\n

Filter to only a particular kind of pinnable item.

\n\n
\n\n
\n\n\n

avatarUrl (URI!)

A URL pointing to the user's public avatar.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

size (Int)

\n

The size of the resulting square image.

\n\n
\n\n
\n\n\n

bio (String)

The user's public profile bio.

\n\n\n\n\n\n\n\n\n\n\n\n

bioHTML (HTML!)

The user's public profile bio as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

commitComments (CommitCommentConnection!)

A list of commit comments made by this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

company (String)

The user's public profile company.

\n\n\n\n\n\n\n\n\n\n\n\n

companyHTML (HTML!)

The user's public profile company as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

contributionsCollection (ContributionsCollection!)

The collection of contributions this user has made to different repositories.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

from (DateTime)

\n

Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.

\n\n
\n\n
\n

organizationID (ID)

\n

The ID of the organization used to filter contributions.

\n\n
\n\n
\n

to (DateTime)

\n

Only contributions made before and up to and including this time will be\ncounted. If omitted, defaults to the current time.

\n\n
\n\n
\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

databaseId (Int)

Identifies the primary key from the database.

\n\n\n\n\n\n\n\n\n\n\n\n

email (String!)

The user's publicly visible profile email.

\n\n\n\n\n\n\n\n\n\n\n\n

followers (FollowerConnection!)

A list of users the given user is followed by.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

following (FollowingConnection!)

A list of users the given user is following.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

gist (Gist)

Find gist by repo name.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

The gist name to find.

\n\n
\n\n
\n\n\n

gistComments (GistCommentConnection!)

A list of gist comments made by this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

gists (GistConnection!)

A list of the Gists the user has created.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (GistOrder)

\n

Ordering options for gists returned from the connection.

\n\n
\n\n
\n

privacy (GistPrivacy)

\n

Filters Gists according to privacy.

\n\n
\n\n
\n\n\n

hasSponsorsListing (Boolean!)

True if this user/organization has a GitHub Sponsors listing.

\n\n\n\n\n\n\n\n\n\n\n\n

hovercard (Hovercard!)

The hovercard information for this user in a given context.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

primarySubjectId (ID)

\n

The ID of the subject to get the hovercard in the context of.

\n\n
\n\n
\n\n\n

interactionAbility (RepositoryInteractionAbility)

The interaction ability settings for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

isBountyHunter (Boolean!)

Whether or not this user is a participant in the GitHub Security Bug Bounty.

\n\n\n\n\n\n\n\n\n\n\n\n

isCampusExpert (Boolean!)

Whether or not this user is a participant in the GitHub Campus Experts Program.

\n\n\n\n\n\n\n\n\n\n\n\n

isDeveloperProgramMember (Boolean!)

Whether or not this user is a GitHub Developer Program member.

\n\n\n\n\n\n\n\n\n\n\n\n

isEmployee (Boolean!)

Whether or not this user is a GitHub employee.

\n\n\n\n\n\n\n\n\n\n\n\n

isHireable (Boolean!)

Whether or not the user has marked themselves as for hire.

\n\n\n\n\n\n\n\n\n\n\n\n

isSiteAdmin (Boolean!)

Whether or not this user is a site administrator.

\n\n\n\n\n\n\n\n\n\n\n\n

isSponsoringViewer (Boolean!)

True if the viewer is sponsored by this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

isViewer (Boolean!)

Whether or not this user is the viewing user.

\n\n\n\n\n\n\n\n\n\n\n\n

issueComments (IssueCommentConnection!)

A list of issue comments made by this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueCommentOrder)

\n

Ordering options for issue comments returned from the connection.

\n\n
\n\n
\n\n\n

issues (IssueConnection!)

A list of issues associated with this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

filterBy (IssueFilters)

\n

Filtering options for issues returned from the connection.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for issues returned from the connection.

\n\n
\n\n
\n

states ([IssueState!])

\n

A list of states to filter the issues by.

\n\n
\n\n
\n\n\n

itemShowcase (ProfileItemShowcase!)

Showcases a selection of repositories and gists that the profile owner has\neither curated or that have been selected automatically based on popularity.

\n\n\n\n\n\n\n\n\n\n\n\n

location (String)

The user's public profile location.

\n\n\n\n\n\n\n\n\n\n\n\n

login (String!)

The username used to login.

\n\n\n\n\n\n\n\n\n\n\n\n

name (String)

The user's public profile name.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

Find an organization by its login that the user belongs to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

login (String!)

\n

The login of the organization to find.

\n\n
\n\n
\n\n\n

organizationVerifiedDomainEmails ([String!]!)

Verified email addresses that match verified domains for a specified organization the user is a member of.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

login (String!)

\n

The login of the organization to match verified domains from.

\n\n
\n\n
\n\n\n

organizations (OrganizationConnection!)

A list of organizations the user belongs to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

packages (PackageConnection!)

A list of packages under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

names ([String])

\n

Find packages by their names.

\n\n
\n\n
\n

orderBy (PackageOrder)

\n

Ordering of the returned packages.

\n\n
\n\n
\n

packageType (PackageType)

\n

Filter registry package by type.

\n\n
\n\n
\n

repositoryId (ID)

\n

Find packages in a repository by ID.

\n\n
\n\n
\n\n\n

pinnableItems (PinnableItemConnection!)

A list of repositories and gists this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinnable items that are returned.

\n\n
\n\n
\n\n\n

pinnedItems (PinnableItemConnection!)

A list of repositories and gists this profile owner has pinned to their profile.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

types ([PinnableItemType!])

\n

Filter the types of pinned items that are returned.

\n\n
\n\n
\n\n\n

pinnedItemsRemaining (Int!)

Returns how many more items this profile owner can pin to their profile.

\n\n\n\n\n\n\n\n\n\n\n\n

project (Project)

Find project by number.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

number (Int!)

\n

The project number to find.

\n\n
\n\n
\n\n\n

projects (ProjectConnection!)

A list of projects under the owner.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (ProjectOrder)

\n

Ordering options for projects returned from the connection.

\n\n
\n\n
\n

search (String)

\n

Query to search projects by, currently only searching by name.

\n\n
\n\n
\n

states ([ProjectState!])

\n

A list of states to filter the projects by.

\n\n
\n\n
\n\n\n

projectsResourcePath (URI!)

The HTTP path listing user's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

projectsUrl (URI!)

The HTTP URL listing user's projects.

\n\n\n\n\n\n\n\n\n\n\n\n

publicKeys (PublicKeyConnection!)

A list of public keys associated with this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n\n\n

pullRequests (PullRequestConnection!)

A list of pull requests associated with this user.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

baseRefName (String)

\n

The base ref name to filter the pull requests by.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

headRefName (String)

\n

The head ref name to filter the pull requests by.

\n\n
\n\n
\n

labels ([String!])

\n

A list of label names to filter the pull requests by.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (IssueOrder)

\n

Ordering options for pull requests returned from the connection.

\n\n
\n\n
\n

states ([PullRequestState!])

\n

A list of states to filter the pull requests by.

\n\n
\n\n
\n\n\n

repositories (RepositoryConnection!)

A list of repositories that the user owns.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

Array of viewer's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\ncurrent viewer owns.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isFork (Boolean)

\n

If non-null, filters repositories according to whether they are forks of another repository.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

repositoriesContributedTo (RepositoryConnection!)

A list of repositories that the user recently contributed to.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

contributionTypes ([RepositoryContributionType])

\n

If non-null, include only the specified types of contributions. The\nGitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY].

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includeUserRepositories (Boolean)

\n

If true, include user repositories.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

repository (Repository)

Find Repository.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

name (String!)

\n

Name of Repository to find.

\n\n
\n\n
\n\n\n

resourcePath (URI!)

The HTTP path for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

savedReplies (SavedReplyConnection)

Replies this user has saved.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SavedReplyOrder)

\n

The field to order saved replies by.

\n\n
\n\n
\n\n\n

sponsorsListing (SponsorsListing)

The GitHub Sponsors listing for this user or organization.

\n\n\n\n\n\n\n\n\n\n\n\n

sponsorshipsAsMaintainer (SponsorshipConnection!)

This object's sponsorships as the maintainer.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

includePrivate (Boolean)

\n

Whether or not to include private sponsorships in the result set.

\n

The default value is false.

\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

sponsorshipsAsSponsor (SponsorshipConnection!)

This object's sponsorships as the sponsor.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (SponsorshipOrder)

\n

Ordering options for sponsorships returned from this connection. If left\nblank, the sponsorships will be ordered based on relevancy to the viewer.

\n\n
\n\n
\n\n\n

starredRepositories (StarredRepositoryConnection!)

Repositories the user has starred.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (StarOrder)

\n

Order for connection.

\n\n
\n\n
\n

ownedByViewer (Boolean)

\n

Filters starred repositories to only return repositories owned by the viewer.

\n\n
\n\n
\n\n\n

status (UserStatus)

The user's description of what they're currently doing.

\n\n\n\n\n\n\n\n\n\n\n\n

topRepositories (RepositoryConnection!)

Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder!)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

since (DateTime)

\n

How far back in time to fetch contributed repositories.

\n\n
\n\n
\n\n\n

twitterUsername (String)

The user's Twitter username.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

url (URI!)

The HTTP URL for this user.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanChangePinnedItems (Boolean!)

Can the viewer pin repositories and gists to the profile?.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanCreateProjects (Boolean!)

Can the current viewer create new projects on this owner.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanFollow (Boolean!)

Whether or not the viewer is able to follow the user.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerCanSponsor (Boolean!)

Whether or not the viewer is able to sponsor this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsFollowing (Boolean!)

Whether or not this user is followed by the viewer.

\n\n\n\n\n\n\n\n\n\n\n\n

viewerIsSponsoring (Boolean!)

True if the viewer is sponsoring this user/organization.

\n\n\n\n\n\n\n\n\n\n\n\n

watching (RepositoryConnection!)

A list of repositories the given user is watching.

\n\n\n\n\n\n\n\n\n\n\n
\n

Arguments

\n\n
\n

affiliations ([RepositoryAffiliation])

\n

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.

\n\n
\n\n
\n

after (String)

\n

Returns the elements in the list that come after the specified cursor.

\n\n
\n\n
\n

before (String)

\n

Returns the elements in the list that come before the specified cursor.

\n\n
\n\n
\n

first (Int)

\n

Returns the first n elements from the list.

\n\n
\n\n
\n

isLocked (Boolean)

\n

If non-null, filters repositories according to whether they have been locked.

\n\n
\n\n
\n

last (Int)

\n

Returns the last n elements from the list.

\n\n
\n\n
\n

orderBy (RepositoryOrder)

\n

Ordering options for repositories returned from the connection.

\n\n
\n\n
\n

ownerAffiliations ([RepositoryAffiliation])

\n

Array of owner's affiliation options for repositories returned from the\nconnection. For example, OWNER will include only repositories that the\norganization or user being viewed owns.

\n\n
\n\n
\n

privacy (RepositoryPrivacy)

\n

If non-null, filters repositories according to privacy.

\n\n
\n\n
\n\n\n

websiteUrl (URI)

A URL pointing to the user's public website/blog.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserBlockedEvent\n

\n

Represents auser_blockedevent on a given user.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

actor (Actor)

Identifies the actor who performed the event.

\n\n\n\n\n\n\n\n\n\n\n\n

blockDuration (UserBlockDuration!)

Number of days that the user was blocked for.

\n\n\n\n\n\n\n\n\n\n\n\n

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

subject (User)

The user who was blocked.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserConnection\n

\n

The connection type for User.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([User])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserContentEdit\n

\n

An edit on user content.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

deletedAt (DateTime)

Identifies the date and time when the object was deleted.

\n\n\n\n\n\n\n\n\n\n\n\n

deletedBy (Actor)

The actor who deleted this content.

\n\n\n\n\n\n\n\n\n\n\n\n

diff (String)

A summary of the changes for this edit.

\n\n\n\n\n\n\n\n\n\n\n\n

editedAt (DateTime!)

When this content was edited.

\n\n\n\n\n\n\n\n\n\n\n\n

editor (Actor)

The actor who edited this content.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserContentEditConnection\n

\n

A list of edits to content.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserContentEditEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([UserContentEdit])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserContentEditEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (UserContentEdit)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserEdge\n

\n

Represents a user.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (User)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserEmailMetadata\n

\n

Email attributes from External Identity.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

primary (Boolean)

Boolean to identify primary emails.

\n\n\n\n\n\n\n\n\n\n\n\n

type (String)

Type of email.

\n\n\n\n\n\n\n\n\n\n\n\n

value (String!)

Email id.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserStatus\n

\n

The user's description of what they're currently doing.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

createdAt (DateTime!)

Identifies the date and time when the object was created.

\n\n\n\n\n\n\n\n\n\n\n\n

emoji (String)

An emoji summarizing the user's status.

\n\n\n\n\n\n\n\n\n\n\n\n

emojiHTML (HTML)

The status emoji as HTML.

\n\n\n\n\n\n\n\n\n\n\n\n

expiresAt (DateTime)

If set, the status will not be shown after this date.

\n\n\n\n\n\n\n\n\n\n\n\n

id (ID!)

ID of the object.

\n\n\n\n\n\n\n\n\n\n\n\n

indicatesLimitedAvailability (Boolean!)

Whether this status indicates the user is not fully available on GitHub.

\n\n\n\n\n\n\n\n\n\n\n\n

message (String)

A brief message describing what the user is doing.

\n\n\n\n\n\n\n\n\n\n\n\n

organization (Organization)

The organization whose members can see this status. If null, this status is publicly visible.

\n\n\n\n\n\n\n\n\n\n\n\n

updatedAt (DateTime!)

Identifies the date and time when the object was last updated.

\n\n\n\n\n\n\n\n\n\n\n\n

user (User!)

The user who has this status.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserStatusConnection\n

\n

The connection type for UserStatus.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

edges ([UserStatusEdge])

A list of edges.

\n\n\n\n\n\n\n\n\n\n\n\n

nodes ([UserStatus])

A list of nodes.

\n\n\n\n\n\n\n\n\n\n\n\n

pageInfo (PageInfo!)

Information to aid in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

totalCount (Int!)

Identifies the total count of items in the connection.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n UserStatusEdge\n

\n

An edge in a connection.

\n
\n\n
\n \n\n \n\n\n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

cursor (String!)

A cursor for use in pagination.

\n\n\n\n\n\n\n\n\n\n\n\n

node (UserStatus)

The item at the end of the edge.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n\n
\n
\n

\n ViewerHovercardContext\n

\n

A hovercard context with a message describing how the viewer is related.

\n
\n\n
\n \n\n \n\n\n \n

\n \n \n\n \n

Fields

\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription

message (String!)

A string describing this context.

\n\n\n\n\n\n\n\n\n\n\n\n

octicon (String!)

An octicon to accompany this context.

\n\n\n\n\n\n\n\n\n\n\n\n

viewer (User!)

Identifies the user who is related to this context.

\n\n\n\n\n\n\n\n\n\n\n\n
\n\n \n
\n
\n
\n", "miniToc": [ { "contents": "\n ActorLocation\n ", @@ -1737,6 +1737,11 @@ "headingLevel": 3, "indentationLevel": 0 }, + { + "contents": "\n RepositoryInteractionAbility\n ", + "headingLevel": 3, + "indentationLevel": 0 + }, { "contents": "\n RepositoryInvitation\n ", "headingLevel": 3, diff --git a/lib/graphql/static/schema-dotcom.json b/lib/graphql/static/schema-dotcom.json index e37042d952..9ce8568490 100644 --- a/lib/graphql/static/schema-dotcom.json +++ b/lib/graphql/static/schema-dotcom.json @@ -28545,6 +28545,14 @@ "kind": "scalars", "href": "/graphql/reference/scalars#boolean" }, + { + "name": "interactionAbility", + "description": "

The interaction ability settings for this organization.

", + "type": "RepositoryInteractionAbility", + "id": "repositoryinteractionability", + "kind": "objects", + "href": "/graphql/reference/objects#repositoryinteractionability" + }, { "name": "ipAllowListEnabledSetting", "description": "

The setting value for whether the organization has an IP allow list enabled.

", @@ -42674,6 +42682,14 @@ "kind": "scalars", "href": "/graphql/reference/scalars#uri" }, + { + "name": "interactionAbility", + "description": "

The interaction ability settings for this repository.

", + "type": "RepositoryInteractionAbility", + "id": "repositoryinteractionability", + "kind": "objects", + "href": "/graphql/reference/objects#repositoryinteractionability" + }, { "name": "isArchived", "description": "

Indicates if the repository is unmaintained.

", @@ -44553,6 +44569,39 @@ } ] }, + { + "name": "RepositoryInteractionAbility", + "kind": "objects", + "id": "repositoryinteractionability", + "href": "/graphql/reference/objects#repositoryinteractionability", + "description": "

Repository interaction limit that applies to this object.

", + "fields": [ + { + "name": "expiresAt", + "description": "

The time the currently active limit expires.

", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, + { + "name": "limit", + "description": "

The current limit that is enabled on this object.

", + "type": "RepositoryInteractionLimit!", + "id": "repositoryinteractionlimit", + "kind": "enums", + "href": "/graphql/reference/enums#repositoryinteractionlimit" + }, + { + "name": "origin", + "description": "

The origin of the currently active interaction limit.

", + "type": "RepositoryInteractionLimitOrigin!", + "id": "repositoryinteractionlimitorigin", + "kind": "enums", + "href": "/graphql/reference/enums#repositoryinteractionlimitorigin" + } + ] + }, { "name": "RepositoryInvitation", "kind": "objects", @@ -52395,6 +52444,14 @@ } ] }, + { + "name": "interactionAbility", + "description": "

The interaction ability settings for this user.

", + "type": "RepositoryInteractionAbility", + "id": "repositoryinteractionability", + "kind": "objects", + "href": "/graphql/reference/objects#repositoryinteractionability" + }, { "name": "isBountyHunter", "description": "

Whether or not this user is a participant in the GitHub Security Bug Bounty.

", @@ -59457,6 +59514,52 @@ } ] }, + { + "name": "RepositoryInteractionLimit", + "kind": "enums", + "id": "repositoryinteractionlimit", + "href": "/graphql/reference/enums#repositoryinteractionlimit", + "description": "

A repository interaction limit.

", + "values": [ + { + "name": "COLLABORATORS_ONLY", + "description": "

Users that are not collaborators will not be able to interact with the repository.

" + }, + { + "name": "CONTRIBUTORS_ONLY", + "description": "

Users that have not previously committed to a repository’s default branch will be unable to interact with the repository.

" + }, + { + "name": "EXISTING_USERS", + "description": "

Users that have recently created their account will be unable to interact with the repository.

" + }, + { + "name": "NO_LIMIT", + "description": "

No interaction limits are enabled.

" + } + ] + }, + { + "name": "RepositoryInteractionLimitOrigin", + "kind": "enums", + "id": "repositoryinteractionlimitorigin", + "href": "/graphql/reference/enums#repositoryinteractionlimitorigin", + "description": "

Indicates where an interaction limit is configured.

", + "values": [ + { + "name": "ORGANIZATION", + "description": "

A limit that is configured at the organization level.

" + }, + { + "name": "REPOSITORY", + "description": "

A limit that is configured at the repository level.

" + }, + { + "name": "USER", + "description": "

A limit that is configured at the user-wide level.

" + } + ] + }, { "name": "RepositoryInvitationOrderField", "kind": "enums", From 52dbd9214468f49fa1abd3278ce7c8ff0ade63f1 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Thu, 19 Nov 2020 15:53:35 -0500 Subject: [PATCH 20/20] Rewrite links in Page.intro with language (#16550) * Add defaultLanguage behavior * Add a million logs because I'm confused * Rewrite intro links * Undo changes to detect-language * Add a test --- lib/page.js | 6 ++++++ tests/unit/page.js | 15 +++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/lib/page.js b/lib/page.js index 9927edb32a..c97e49470f 100644 --- a/lib/page.js +++ b/lib/page.js @@ -123,6 +123,12 @@ class Page { async _render (context) { this.intro = await renderContent(this.rawIntro, context) + + // rewrite local links in the intro to include current language code and GHE version if needed + const introHtml = cheerio.load(this.intro) + rewriteLocalLinks(introHtml, context.currentVersion, context.currentLanguage) + this.intro = introHtml('body').html() + this.introPlainText = await renderContent(this.rawIntro, context, { textOnly: true }) this.title = await renderContent(this.rawTitle, context, { textOnly: true, encodeEntities: true }) this.shortTitle = await renderContent(this.shortTitle, context, { textOnly: true, encodeEntities: true }) diff --git a/tests/unit/page.js b/tests/unit/page.js index 876b9ca31a..19164e4d9d 100644 --- a/tests/unit/page.js +++ b/tests/unit/page.js @@ -90,6 +90,21 @@ describe('Page class', () => { expect($(`a[href="/en/${nonEnterpriseDefaultVersion}/articles/about-pull-requests"]`).length).toBeGreaterThan(0) }) + test('rewrites links in the intro to include the current language prefix and version', async () => { + const page = new Page(opts) + page.rawIntro = '[Pull requests](/articles/about-pull-requests)' + const context = { + page: { version: nonEnterpriseDefaultVersion }, + currentVersion: nonEnterpriseDefaultVersion, + currentPath: '/en/github/collaborating-with-issues-and-pull-requests/about-branches', + currentLanguage: 'en' + } + await page.render(context) + const $ = cheerio.load(page.intro) + expect($('a[href="/articles/about-pull-requests"]').length).toBe(0) + expect($(`a[href="/en/${nonEnterpriseDefaultVersion}/articles/about-pull-requests"]`).length).toBeGreaterThan(0) + }) + test('does not rewrite links that include deprecated enterprise release numbers', async () => { const page = new Page({ relativePath: 'admin/enterprise-management/migrating-from-github-enterprise-1110x-to-2123.md',