diff --git a/.github/allowed-actions.js b/.github/allowed-actions.js index 3f372b3b83..e8e4cf3f9a 100644 --- a/.github/allowed-actions.js +++ b/.github/allowed-actions.js @@ -18,6 +18,7 @@ export default [ 'dawidd6/action-download-artifact@af92a8455a59214b7b932932f2662fdefbd78126', // v2.15.0 'docker://chinthakagodawita/autoupdate-action:v1', 'dorny/paths-filter@eb75a1edc117d3756a18ef89958ee59f9500ba58', + 'trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b', // v1.2.4 'github/codeql-action/analyze@v1', 'github/codeql-action/init@v1', 'juliangruber/approve-pull-request-action@c530832d4d346c597332e20e03605aa94fa150a8', diff --git a/.github/workflows/check-broken-links-github-github.yml b/.github/workflows/check-broken-links-github-github.yml index 2d27a0fd0a..5b720e62c8 100644 --- a/.github/workflows/check-broken-links-github-github.yml +++ b/.github/workflows/check-broken-links-github-github.yml @@ -59,11 +59,11 @@ jobs: # # https://docs.github.com/actions/reference/context-and-expression-syntax-for-github-actions#job-status-check-functions - - if: ${{ failure() }} + - if: ${{ failure() && env.FREEZE != 'true' }} name: Get title for issue id: check run: echo "::set-output name=title::$(head -1 broken_github_github_links.md)" - - if: ${{ failure() }} + - if: ${{ failure() && env.FREEZE != 'true'}} name: Create issue from file id: github-github-broken-link-report uses: peter-evans/create-issue-from-file@b4f9ee0a9d4abbfc6986601d9b1a4f8f8e74c77e diff --git a/.github/workflows/enterprise-dates.yml b/.github/workflows/enterprise-dates.yml index 86e3c421a0..283f74436b 100644 --- a/.github/workflows/enterprise-dates.yml +++ b/.github/workflows/enterprise-dates.yml @@ -68,7 +68,7 @@ jobs: branch: enterprise-server-dates-update delete-branch: true - - if: ${{ failure() }} + - if: ${{ failure() && env.FREEZE != 'true' }} name: Delete remote branch (if previous steps failed) uses: dawidd6/action-delete-branch@47743101a121ad657031e6704086271ca81b1911 with: @@ -84,7 +84,7 @@ jobs: - name: Send Slack notification if workflow fails uses: someimportantcompany/github-actions-slack-message@f8d28715e7b8a4717047d23f48c39827cacad340 - if: failure() + if: ${{ failure() && env.FREEZE != 'true' }} with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} diff --git a/.github/workflows/remove-unused-assets.yml b/.github/workflows/remove-unused-assets.yml index abaa4c28a0..3b1094ae8f 100644 --- a/.github/workflows/remove-unused-assets.yml +++ b/.github/workflows/remove-unused-assets.yml @@ -58,7 +58,7 @@ jobs: project: Core docs work for the current week project-column: Should do branch: remove-unused-assets - - if: ${{ failure() }} + - if: ${{ failure() && env.FREEZE != 'true' }} name: Delete remote branch (if previous steps failed) uses: dawidd6/action-delete-branch@47743101a121ad657031e6704086271ca81b1911 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67d93a3950..0dad27824f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,6 +46,18 @@ jobs: # Enables cloning the Early Access repo later with the relevant PAT persist-credentials: 'false' + - name: Gather files changed + uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b + id: get_diff_files + with: + # So that `steps.get_diff_files.outputs.files` becomes + # a string like `foo.js path/bar.md` + output: ' ' + + - name: Insight into changed files + run: | + echo ${{ steps.get_diff_files.outputs.files }} + - name: Setup node uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c with: @@ -67,4 +79,6 @@ jobs: run: npm run build - name: Run tests + env: + DIFF_FILES: ${{ steps.get_diff_files.outputs.files }} run: npm run test tests/${{ matrix.test-group }}/ diff --git a/.github/workflows/update-graphql-files.yml b/.github/workflows/update-graphql-files.yml index 8c90fc9db1..f12e2f8c53 100644 --- a/.github/workflows/update-graphql-files.yml +++ b/.github/workflows/update-graphql-files.yml @@ -75,7 +75,7 @@ jobs: number: ${{ steps.create-pull-request.outputs.pull-request-number }} - name: Send Slack notification if workflow fails uses: someimportantcompany/github-actions-slack-message@f8d28715e7b8a4717047d23f48c39827cacad340 - if: failure() + if: ${{ failure() && env.FREEZE != 'true' }} with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} diff --git a/assets/images/help/organizations/org-settings-moderation-settings.png b/assets/images/help/organizations/org-settings-moderation-settings.png index 515b8d5440..f02db70b48 100644 Binary files a/assets/images/help/organizations/org-settings-moderation-settings.png and b/assets/images/help/organizations/org-settings-moderation-settings.png differ diff --git a/assets/images/help/repository/required-statuses-list.png b/assets/images/help/repository/required-statuses-list.png index 6ff95dcd85..3b80c181d4 100644 Binary files a/assets/images/help/repository/required-statuses-list.png and b/assets/images/help/repository/required-statuses-list.png differ diff --git a/assets/images/help/settings/accessibility-tab.png b/assets/images/help/settings/accessibility-tab.png new file mode 100644 index 0000000000..da3d671d31 Binary files /dev/null and b/assets/images/help/settings/accessibility-tab.png differ diff --git a/assets/images/help/settings/disable-character-key-shortcuts.png b/assets/images/help/settings/disable-character-key-shortcuts.png new file mode 100644 index 0000000000..9f4db55459 Binary files /dev/null and b/assets/images/help/settings/disable-character-key-shortcuts.png differ diff --git a/assets/images/help/writing/collapsed-section-view.png b/assets/images/help/writing/collapsed-section-view.png new file mode 100644 index 0000000000..9e479b3ed8 Binary files /dev/null and b/assets/images/help/writing/collapsed-section-view.png differ diff --git a/assets/images/help/writing/open-collapsed-section.png b/assets/images/help/writing/open-collapsed-section.png new file mode 100644 index 0000000000..e4cbd6ed60 Binary files /dev/null and b/assets/images/help/writing/open-collapsed-section.png differ diff --git a/components/Search.module.scss b/components/Search.module.scss index 45f9e19640..f4e80759ff 100644 --- a/components/Search.module.scss +++ b/components/Search.module.scss @@ -64,3 +64,8 @@ left: 0; display: block; } + +.headerSearchResults { + overflow-y: auto; + max-height: 80vh; +} diff --git a/components/Search.tsx b/components/Search.tsx index 03e5548174..be40fe9764 100644 --- a/components/Search.tsx +++ b/components/Search.tsx @@ -1,12 +1,13 @@ import React, { useState, useEffect, useRef, ReactNode, RefObject } from 'react' import { useRouter } from 'next/router' -import debounce from 'lodash/debounce' +import useSWR from 'swr' import cx from 'classnames' import { useTranslation } from 'components/hooks/useTranslation' import { sendEvent, EventType } from 'components/lib/events' import { useMainContext } from './context/MainContext' import { useVersion } from 'components/hooks/useVersion' +import { useQuery } from 'components/hooks/useQuery' import { useLanguages } from './context/LanguagesContext' import styles from './Search.module.scss' @@ -23,120 +24,144 @@ type SearchResult = { type Props = { isHeaderSearch?: boolean + isMobileSearch?: boolean variant?: 'compact' | 'expanded' - updateSearchParams?: boolean iconSize: number children?: (props: { SearchInput: ReactNode; SearchResults: ReactNode }) => ReactNode } export function Search({ isHeaderSearch = false, - updateSearchParams = true, + isMobileSearch = false, variant = 'compact', iconSize = 24, children, }: Props) { const router = useRouter() - const [query, setQuery] = useState(router.query.query || '') - const [results, setResults] = useState | null>(null) - const [isLoading, setIsLoading] = useState(false) + const { query, debug } = useQuery() + const [localQuery, setLocalQuery] = useState(query) + const [debouncedQuery, setDebouncedQuery] = useDebounce(localQuery, 300) const inputRef = useRef(null) const { t } = useTranslation('search') const { currentVersion } = useVersion() const { languages } = useLanguages() - const initialRender = useRef(true) // Figure out language and version for index const { searchVersions, nonEnterpriseDefaultVersion } = useMainContext() // fall back to the non-enterprise default version (FPT currently) on the homepage, 404 page, etc. const version = searchVersions[currentVersion] || searchVersions[nonEnterpriseDefaultVersion] const language = (Object.keys(languages).includes(router.locale || '') && router.locale) || 'en' - const isHomePage = !('productId' in router.query) - // If the user shows up with a query in the URL, go ahead and search for it - useEffect(() => { - if ( - (!isHeaderSearch && isHomePage && router.query.query) || - (isHeaderSearch && updateSearchParams && router.query.query) - ) { - /* await */ fetchSearchResults((router.query.query as string).trim()) - } - }, []) + const fetchURL = query + ? `/search?${new URLSearchParams({ + language, + version, + query, + })}` + : null - // If the version changed from the dropdown version or language picker - // close the search pane and clear the query - // If the version changed from the search result window, keep the query - // and results but reset the versionFromSearchPane value - useEffect(() => { - if (initialRender.current) { - initialRender.current = false - } else { - closeSearch() + const { data: results, error: searchError } = useSWR( + fetchURL, + async (url: string) => { + const response = await fetch(url) + if (!response.ok) { + throw new Error(`${response.status} on ${url}`) + } + return await response.json() + }, + { + onSuccess: () => { + sendEvent({ + type: EventType.search, + search_query: query, + // search_context + }) + }, + // Because the backend never changes between fetches, we can treat + // it as an immutable resource and disable these revalidation + // checks. + revalidateIfStale: false, + revalidateOnFocus: false, + revalidateOnReconnect: false, } - }, [currentVersion, language]) + ) + + const [previousResults, setPreviousResults] = useState() + useEffect(() => { + if (results) { + setPreviousResults(results) + } else if (!query) { + setPreviousResults(undefined) + } + }, [results, query]) + + // The `isLoading` boolean will become false every time the useSWR hook + // fires off a new XHR. So it toggles from false/true often. + // But we don't want to display "Loading..." every time a new XHR query + // begins, immediately, because the XHR requests are usually very fast + // so that you just see it flicker by. That's why we introduce a + // debounced version of that same boolean value. + // The problem is that the debounce is *trailing*. Meaning, it will + // always yield the last thing you sent to it, but with a delay. + // The problem is that, by the time the debounce finally fires, + // it might say 'true' when in fact the XHR has finished! That would + // mean saying "Loading..." is a lie! + // That's why we combine them into a final one. We're basically doing + // this to favor *NOT* saying "Loading...". + const isLoadingRaw = Boolean(query && !results && !searchError) + const [isLoadingDebounced] = useDebounce(isLoadingRaw, 500) + const isLoading = isLoadingRaw && isLoadingDebounced + + useEffect(() => { + if ((router.query.query || '') !== debouncedQuery) { + const [asPathRoot, asPathQuery = ''] = router.asPath.split('?') + const params = new URLSearchParams(asPathQuery) + if (debouncedQuery) { + params.set('query', debouncedQuery) + } else { + params.delete('query') + } + let asPath = `/${router.locale}${asPathRoot}` + if (params.toString()) { + asPath += `?${params.toString()}` + } + // Workaround a next.js routing behavior that + // will cause the default locale path of the index page + // "/en" to change to just "/". + if (router.pathname === '/') { + // Don't include router.locale so next doesn't attempt a + // request to `/_next/static/chunks/pages/en.js` + router.replace(`/?${params.toString()}`, asPath) + } else { + router.replace(asPath) + } + } + }, [debouncedQuery]) // When the user finishes typing, update the results - async function onSearch(e: React.ChangeEvent) { - const xquery = e.target?.value?.trim() - setQuery(xquery) - - // Update the URL with the search parameters in the query string - if (updateSearchParams) { - const pushUrl = new URL(location.toString()) - pushUrl.searchParams.set('query', xquery) - history.pushState({}, '', pushUrl.toString()) - } - return await fetchSearchResults(xquery) + function onSearch(e: React.ChangeEvent) { + setLocalQuery(e.target.value) } - - // If there's a query, call the endpoint - // Otherwise, there's no results by default - async function fetchSearchResults(xquery: string) { - setIsLoading(true) - try { - if (xquery) { - const endpointUrl = new URL(location.origin) - endpointUrl.pathname = '/search' - const endpointParams: Record = { - language, - version, - query: xquery, - } - endpointUrl.search = new URLSearchParams(endpointParams).toString() - - const response = await fetch(endpointUrl.toString(), { - method: 'GET', - headers: { 'Content-Type': 'application/json' }, - }) - setResults(response.ok ? await response.json() : []) - } else { - setResults(null) + useEffect(() => { + if (localQuery.trim()) { + if (localQuery.endsWith(' ')) { + setDebouncedQuery(localQuery.trim()) } - } finally { - setIsLoading(false) + } else { + setDebouncedQuery('') } - - // Analytics tracking - if (xquery) { - sendEvent({ - type: EventType.search, - search_query: xquery, - // search_context - }) - } - } + }, [localQuery]) // Close panel if overlay is clicked function closeSearch() { - setQuery('') - setResults(null) - if (inputRef.current) { - inputRef.current.value = '' - } + setLocalQuery('') } // Prevent the page from refreshing when you "submit" the form - function preventRefresh(evt: React.FormEvent) { + function onFormSubmit(evt: React.FormEvent) { evt.preventDefault() + if (localQuery.trim()) { + setDebouncedQuery(localQuery.trim()) + } } const SearchResults = ( @@ -151,14 +176,14 @@ export function Search({ query && styles.resultsContainerOpen )} > -
@@ -173,7 +198,7 @@ export function Search({ const SearchInput = ( + ) // When there are search results, it doesn't matter if this is overlay or not. return (
- { - closeSearch()} - onClickOutside={() => closeSearch()} - aria-labelledby="title" - sx={ - isHeaderSearch && { - background: 'none', - boxShadow: 'none', - position: 'static', - overflowY: 'auto', - maxHeight: '80vh', - maxWidth: '96%', - margin: '1.5em 2em 0 0.5em', - scrollbarWidth: 'none', + {!isHeaderSearch && !isMobileSearch ? ( + <> + {/* Only if you're going to use an do you need + to specify a portal div tag. */} +
+ closeSearch()} + onClickOutside={() => closeSearch()} + aria-labelledby="title" + sx={ + isHeaderSearch && { + background: 'none', + boxShadow: 'none', + position: 'static', + overflowY: 'auto', + maxHeight: '80vh', + maxWidth: '96%', + margin: '1.5em 2em 0 0.5em', + scrollbarWidth: 'none', + } } - } - > -
-
-

- You're searching the {searchVersion}{' '} - version. Didn't find what you're looking for? Click a different version to try - again. -

- {versions.map(({ title, version }) => { - return ( - - ) - })} -
- { - return { - key: url, - text: title, - renderItem: () => ( - - -
  • -
    - {/* Breadcrumbs in search records don't include the page title. These fields may contain elements that we need to render */} - - {debug && ( - - score: {score.toFixed(4)} popularity: {popularity.toFixed(4)} - - )} -
    -
    -
    ]+(>|$)|(\/)/g, '') } - : { - __html: breadcrumbs - .split(' / ') - .slice(0, breadcrumbs.length - 1) - .join(' / ') - .replace(/<\/?[^>]+(>|$)/g, ''), - } - } - /> -
    -
  • - -
    - ), - } - })} - /> -
    -
    - } + > + {ActionListResults} + + + ) : ( + ActionListResults + )}
    ) } diff --git a/components/article/ArticlePage.tsx b/components/article/ArticlePage.tsx index 316543a683..312770863e 100644 --- a/components/article/ArticlePage.tsx +++ b/components/article/ArticlePage.tsx @@ -1,6 +1,6 @@ import { useRouter } from 'next/router' import cx from 'classnames' -import { Heading } from '@primer/components' +import { ActionList, Heading } from '@primer/components' import { ZapIcon, InfoIcon, ShieldLockIcon } from '@primer/octicons-react' import { Callout } from 'components/ui/Callout' @@ -45,12 +45,19 @@ export const ArticlePage = () => { const renderTocItem = (item: MiniTocItem) => { return ( -
  • -
    - {item.items && item.items.length > 0 ? ( -
      {item.items.map(renderTocItem)}
    - ) : null} -
  • + +
    +
    + {item.items && item.items.length > 0 ? ( +
      {item.items.map(renderTocItem)}
    + ) : null} +
    + ) } @@ -111,13 +118,19 @@ export const ArticlePage = () => { {miniTocItems.length > 1 && ( <> - - {t('miniToc')} - + {t('miniToc')} -
      - {miniTocItems.map(renderTocItem)} -
    + + { + return { + key: title, + text: title, + renderItem: () =>
      {renderTocItem(items)}
    , + } + })} + /> )} diff --git a/components/hooks/useQuery.ts b/components/hooks/useQuery.ts new file mode 100644 index 0000000000..8a219b437c --- /dev/null +++ b/components/hooks/useQuery.ts @@ -0,0 +1,29 @@ +import { useRouter } from 'next/router' + +type QueryInfo = { + query: string + debug: boolean +} +export const useQuery = (): QueryInfo => { + const router = useRouter() + const query = + router.query.query && Array.isArray(router.query.query) + ? router.query.query[0] + : router.query.query || '' + + let debug = false + if (router.query.debug) { + // Now `router.query.debug` is either string or any array of strings + debug = Boolean( + JSON.parse(Array.isArray(router.query.debug) ? router.query.debug[0] : router.query.debug) + ) + } else if (router.query.debug === '') { + // E.g. `?query=foo&debug` should be treated as truthy + debug = true + } + + return { + query, + debug, + } +} diff --git a/components/landing/CodeExampleCard.tsx b/components/landing/CodeExampleCard.tsx index dababb9d7a..d80aa495df 100644 --- a/components/landing/CodeExampleCard.tsx +++ b/components/landing/CodeExampleCard.tsx @@ -1,6 +1,7 @@ import { RepoIcon } from '@primer/octicons-react' import { CodeExample } from 'components/context/ProductLandingContext' import { TruncateLines } from 'components/ui/TruncateLines' +import { Label } from '@primer/components' type Props = { example: CodeExample @@ -21,12 +22,9 @@ export const CodeExampleCard = ({ example }: Props) => {
    {example.tags.map((tag) => { return ( - + + ) })}
    diff --git a/components/page-header/Header.tsx b/components/page-header/Header.tsx index 9dcdd36c28..1960722c49 100644 --- a/components/page-header/Header.tsx +++ b/components/page-header/Header.tsx @@ -18,12 +18,11 @@ export const Header = () => { const router = useRouter() const { relativePath, error } = useMainContext() const { t } = useTranslation(['header', 'homepage']) - const [isMenuOpen, setIsMenuOpen] = useState(false) + const [isMenuOpen, setIsMenuOpen] = useState( + router.pathname !== '/' && router.query.query && true + ) const [scroll, setScroll] = useState(false) - // the graphiql explorer utilizes `?query=` in the url and we don't want our search bar to mess that up - const updateSearchParams = router.asPath !== 'graphql/overview/explorer' - useEffect(() => { function onScroll() { setScroll(window.scrollY > 10) @@ -61,7 +60,7 @@ export const Header = () => {
    - +
    @@ -69,7 +68,7 @@ export const Header = () => { {/* */} {relativePath !== 'index.md' && error !== '404' && (
    - +
    )}
    @@ -107,26 +106,22 @@ export const Header = () => {
    -
    -
    - -
    -

    {t('explore_by_product')}

    - - +
    +
    -
    + + +
    - {/* */} -
    +
    {/* */} {relativePath !== 'index.md' && error !== '404' && ( -
    - +
    +
    )}
    diff --git a/components/page-header/LanguagePicker.tsx b/components/page-header/LanguagePicker.tsx index db15075ef3..235a6fdfac 100644 --- a/components/page-header/LanguagePicker.tsx +++ b/components/page-header/LanguagePicker.tsx @@ -1,85 +1,41 @@ import { useRouter } from 'next/router' -import { Box, Dropdown, Details, Text, useDetails } from '@primer/components' -import { ChevronDownIcon } from '@primer/octicons-react' - import { Link } from 'components/Link' import { useLanguages } from 'components/context/LanguagesContext' +import { Picker } from 'components/ui/Picker' type Props = { variant?: 'inline' } + export const LanguagePicker = ({ variant }: Props) => { const router = useRouter() const { languages } = useLanguages() - const { getDetailsProps, setOpen } = useDetails({ closeOnOutsideClick: true }) const locale = router.locale || 'en' const langs = Object.values(languages) const selectedLang = languages[locale] - if (variant === 'inline') { - return ( -
    - -
    - {selectedLang.nativeName || selectedLang.name} - -
    -
    - - {langs.map((lang) => { - if (lang.wip) { - return null - } - - return ( - setOpen(false)} key={lang.code}> - - {lang.nativeName ? ( - <> - {lang.nativeName} ({lang.name}) - - ) : ( - lang.name - )} - - - ) - })} - -
    - ) - } - return ( -
    - - {selectedLang.nativeName || selectedLang.name} - - - - {langs.map((lang) => { - if (lang.wip) { - return null - } - - return ( - setOpen(false)}> - - {lang.nativeName ? ( - <> - {lang.nativeName} ({lang.name}) - - ) : ( - lang.name - )} - - - ) - })} - -
    + !lang.wip) + .map((lang) => ({ + text: lang.nativeName || lang.name, + selected: lang === selectedLang, + item: ( + + {lang.nativeName ? ( + <> + {lang.nativeName} ({lang.name}) + + ) : ( + lang.name + )} + + ), + }))} + /> ) } diff --git a/components/page-header/ProductPicker.tsx b/components/page-header/ProductPicker.tsx index 5a671a157c..c6653087c4 100644 --- a/components/page-header/ProductPicker.tsx +++ b/components/page-header/ProductPicker.tsx @@ -2,47 +2,33 @@ import { useRouter } from 'next/router' import { Link } from 'components/Link' import { useMainContext } from 'components/context/MainContext' -import { ChevronDownIcon, LinkExternalIcon } from '@primer/octicons-react' -import { Box, Dropdown, Details, useDetails } from '@primer/components' +import { LinkExternalIcon } from '@primer/octicons-react' +import { Picker } from 'components/ui/Picker' -// Product Picker - GitHub.com, Enterprise Server, etc export const ProductPicker = () => { const router = useRouter() const { activeProducts, currentProduct } = useMainContext() - const { getDetailsProps, setOpen } = useDetails({ closeOnOutsideClick: true }) return ( -
    - -
    - {currentProduct?.name || 'All Products'} - -
    -
    - - {activeProducts.map((product) => { - return ( - setOpen(false)}> - - {product.name} - {product.external && ( - - - - )} - - - ) - })} - -
    + ({ + text: product.name, + selected: product === currentProduct, + item: ( + + {product.name} + {product.external && ( + + + + )} + + ), + }))} + /> ) } diff --git a/components/page-header/VersionPicker.tsx b/components/page-header/VersionPicker.tsx index 8568c212cf..be7466b058 100644 --- a/components/page-header/VersionPicker.tsx +++ b/components/page-header/VersionPicker.tsx @@ -1,21 +1,20 @@ import { useRouter } from 'next/router' -import cx from 'classnames' -import { Dropdown, Details, Box, Text, useDetails } from '@primer/components' -import { ArrowRightIcon, ChevronDownIcon } from '@primer/octicons-react' +import { ArrowRightIcon } from '@primer/octicons-react' import { Link } from 'components/Link' import { useMainContext } from 'components/context/MainContext' import { useVersion } from 'components/hooks/useVersion' import { useTranslation } from 'components/hooks/useTranslation' +import { Picker } from 'components/ui/Picker' type Props = { - variant?: 'inline' | 'compact' + variant?: 'inline' } + export const VersionPicker = ({ variant }: Props) => { const router = useRouter() const { currentVersion } = useVersion() const { allVersions, page, enterpriseServerVersions } = useMainContext() - const { getDetailsProps, setOpen } = useDetails({ closeOnOutsideClick: true }) const { t } = useTranslation('pages') if (page.permalinks && page.permalinks.length <= 1) { @@ -23,87 +22,31 @@ export const VersionPicker = ({ variant }: Props) => { } return ( - <> -
    -
    - - {variant === 'inline' ? ( -
    - {allVersions[currentVersion].versionTitle} - -
    - ) : ( - <> - {allVersions[currentVersion].versionTitle} - - - )} -
    - {variant === 'inline' ? ( - - {(page.permalinks || []).map((permalink) => { - return ( - setOpen(false)}> - {permalink.pageVersionTitle} - - ) - })} - - { - setOpen(false) - }} - href={`/${router.locale}/${enterpriseServerVersions[0]}/admin/all-releases`} - className="f6 no-underline color-fg-muted pl-3 pr-2 no-wrap" - > - {t('all_enterprise_releases')}{' '} - - - - - ) : ( - - {(page.permalinks || []).map((permalink) => { - return ( - setOpen(false)}> - {permalink.pageVersionTitle} - - ) - })} - ({ + text: permalink.pageVersionTitle, + selected: allVersions[currentVersion].versionTitle === permalink.pageVersionTitle, + item: {permalink.pageVersionTitle}, + })) + .concat([ + { + text: t('all_enterprise_releases'), + selected: false, + item: ( + - { - setOpen(false) - }} - href={`/${router.locale}/${enterpriseServerVersions[0]}/admin/all-releases`} - className="f6 no-underline color-fg-muted pl-3 pr-2 no-wrap" - > - {t('all_enterprise_releases')}{' '} - - - - - )} -
    -
    - + {t('all_enterprise_releases')}{' '} + + + ), + }, + ])} + /> ) } diff --git a/components/sublanding/ArticleCard.tsx b/components/sublanding/ArticleCard.tsx index 5e0f5c0644..3b48f5f5fe 100644 --- a/components/sublanding/ArticleCard.tsx +++ b/components/sublanding/ArticleCard.tsx @@ -1,4 +1,5 @@ import { ArticleGuide } from 'components/context/ProductSubLandingContext' +import { Label } from '@primer/components' type Props = { card: ArticleGuide @@ -18,13 +19,14 @@ export const ArticleCard = ({ card, typeLabel }: Props) => {
    {card.topics.map((topic) => { return ( - {topic} - + ) })}
    diff --git a/components/ui/Picker/Picker.tsx b/components/ui/Picker/Picker.tsx new file mode 100644 index 0000000000..3f70d01c8b --- /dev/null +++ b/components/ui/Picker/Picker.tsx @@ -0,0 +1,83 @@ +import { ReactNode } from 'react' +import cx from 'classnames' + +import { Details, useDetails, Text, Dropdown, Box } from '@primer/components' +import { ChevronDownIcon } from '@primer/octicons-react' + +export type PickerOptionsTypeT = { + text: string + item: ReactNode + selected?: boolean +} + +export type PickerPropsT = { + variant?: 'inline' + defaultText: string + options: Array +} + +type PickerWrapperPropsT = { + variant?: 'inline' + children: ReactNode +} + +function PickerSummaryWrapper({ variant, children }: PickerWrapperPropsT) { + if (variant === 'inline') { + return ( +
    + {children} + +
    + ) + } + return ( + <> + {children} + + + ) +} + +function PickerOptionsWrapper({ variant, children }: PickerWrapperPropsT) { + if (variant === 'inline') { + return {children} + } + return ( + + {children} + + ) +} + +export function Picker({ variant, defaultText, options, ...restProps }: PickerPropsT) { + const { getDetailsProps, setOpen } = useDetails({ closeOnOutsideClick: true }) + const selectedOption = options.find((option) => option.selected) + + return ( +
    + + + {selectedOption?.text || defaultText} + + + + {options.map((option) => ( + setOpen(false)} key={option.text}> + {option.item} + + ))} + +
    + ) +} diff --git a/components/ui/Picker/index.ts b/components/ui/Picker/index.ts new file mode 100644 index 0000000000..913dac72d0 --- /dev/null +++ b/components/ui/Picker/index.ts @@ -0,0 +1 @@ +export { Picker } from './Picker' diff --git a/content/README.md b/content/README.md index 1e0f1890c6..b00d0891ab 100644 --- a/content/README.md +++ b/content/README.md @@ -102,7 +102,7 @@ redirect_from: - /articles/getting-started-with-github-for-windows/ ``` -See [`contributing/redirects`](contributing/redirects.md) for more info. +See [`contributing/redirects`](../contributing/redirects.md) for more info. ### `title` diff --git a/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/index.md b/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/index.md index ee9bf9b124..6ba64d8d33 100644 --- a/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/index.md +++ b/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/index.md @@ -23,6 +23,7 @@ children: - /deleting-your-user-account - /permission-levels-for-a-user-account-repository - /permission-levels-for-user-owned-project-boards + - /managing-accessibility-settings - /managing-the-default-branch-name-for-your-repositories - /managing-security-and-analysis-settings-for-your-user-account - /managing-access-to-your-user-accounts-project-boards diff --git a/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-accessibility-settings.md b/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-accessibility-settings.md new file mode 100644 index 0000000000..b79c2b3be4 --- /dev/null +++ b/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-accessibility-settings.md @@ -0,0 +1,22 @@ +--- +title: Managing accessibility settings +intro: 'You can disable character key shortcuts on {% data variables.product.prodname_dotcom %} in your accessibility settings.' +versions: + fpt: '*' + ghes: '>=3.4' + feature: keyboard-shortcut-accessibility-setting +--- + +## About accessibility settings + +{% data variables.product.product_name %} includes a variety of keyboard shortcuts so that you can perform actions across the site without using your mouse to navigate. While shortcuts are useful to save time, they can sometimes make {% data variables.product.prodname_dotcom %} harder to use and less accessible. + +All keyboard shortcuts are enabled by default on {% data variables.product.product_name %}, but you can choose to disable character key shortcuts in your accessibility settings. This setting does not affect keyboard shortcuts provided by your web browser or {% data variables.product.prodname_dotcom %} shortcuts that use a modifier key such as `control` or `command`. + +## Managing character key shortcuts + +{% data reusables.user_settings.access_settings %} +{% data reusables.user_settings.accessibility_settings %} +1. Select or deselect the **Enable character key shortcuts** checkbox. + ![Screenshot of the 'Enable character key shortcuts' checkbox](/assets/images/help/settings/disable-character-key-shortcuts.png) +2. Click **Save**. diff --git a/content/actions/creating-actions/creating-a-javascript-action.md b/content/actions/creating-actions/creating-a-javascript-action.md index 006b3000b7..660ebfdd95 100644 --- a/content/actions/creating-actions/creating-a-javascript-action.md +++ b/content/actions/creating-actions/creating-a-javascript-action.md @@ -48,13 +48,13 @@ Before you begin, you'll need to download Node.js and create a public {% data va 1. From your terminal, change directories into your new repository. - ```shell + ```shell{:copy} cd hello-world-javascript-action ``` 1. From your terminal, initialize the directory with npm to generate a `package.json` file. - ```shell + ```shell{:copy} npm init -y ``` @@ -62,7 +62,7 @@ Before you begin, you'll need to download Node.js and create a public {% data va Create a new file named `action.yml` in the `hello-world-javascript-action` directory with the following example code. For more information, see "[Metadata syntax for {% data variables.product.prodname_actions %}](/actions/creating-actions/metadata-syntax-for-github-actions)." -```yaml +```yaml{:copy} name: 'Hello World' description: 'Greet someone and record the time' inputs: @@ -92,7 +92,7 @@ The toolkit offers more than the `core` and `github` packages. For more informat At your terminal, install the actions toolkit `core` and `github` packages. -```shell +```shell{:copy} npm install @actions/core npm install @actions/github ``` @@ -108,7 +108,7 @@ GitHub Actions provide context information about the webhook event, Git refs, wo Add a new file called `index.js`, with the following code. {% raw %} -```javascript +```javascript{:copy} const core = require('@actions/core'); const github = require('@actions/github'); @@ -174,7 +174,7 @@ From your terminal, commit your `action.yml`, `index.js`, `node_modules`, `packa It's best practice to also add a version tag for releases of your action. For more information on versioning your action, see "[About actions](/actions/automating-your-workflow-with-github-actions/about-actions#using-release-management-for-actions)." -```shell +```shell{:copy} git add action.yml index.js node_modules/* package.json package-lock.json README.md git commit -m "My first action is ready" git tag -a -m "My first action release" v1.1 @@ -219,7 +219,7 @@ This example demonstrates how your new public action can be run from within an e Copy the following YAML into a new file at `.github/workflows/main.yml`, and update the `uses: octocat/hello-world-javascript-action@v1.1` line with your username and the name of the public repository you created above. You can also replace the `who-to-greet` input with your name. {% raw %} -```yaml +```yaml{:copy} on: [push] jobs: @@ -246,7 +246,7 @@ Copy the workflow code into a `.github/workflows/main.yml` file in your action's {% raw %} **.github/workflows/main.yml** -```yaml +```yaml{:copy} on: [push] jobs: diff --git a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md index 0155d6f285..af36775458 100644 --- a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md +++ b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md @@ -72,7 +72,7 @@ The `aws-actions/configure-aws-credentials` action receives a JWT from the {% da - ``: Add the name of your S3 bucket here. - ``: Replace the example with your AWS role. -- ``: Add the name of your AWs region here. +- ``: Add the name of your AWS region here. ```yaml{:copy} # Sample workflow to access AWS resources when workflow is tied to branch diff --git a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure.md b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure.md index 54604937da..80231b121a 100644 --- a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure.md +++ b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure.md @@ -65,36 +65,28 @@ The [`azure/login`](https://github.com/Azure/login) action receives a JWT from t The following example exchanges an OIDC ID token with Azure to receive an access token, which can then be used to access cloud resources. +{% raw %} ```yaml{:copy} -name: Run Azure Login with OpenID Connect +name: Run Azure Login with OIDC on: [push] permissions: id-token: write - + contents: read jobs: build-and-deploy: runs-on: ubuntu-latest steps: - - - name: Installing CLI-beta for OpenID Connect - run: | - cd ../.. - CWD="$(pwd)" - python3 -m venv oidc-venv - . oidc-venv/bin/activate - echo "activated environment" - python3 -m pip install -q --upgrade pip - echo "started installing cli beta" - pip install -q --extra-index-url https://azcliprod.blob.core.windows.net/beta/simple/ azure-cli - echo "***************installed cli beta*******************" - echo "$CWD/oidc-venv/bin" >> $GITHUB_PATH - - - name: 'Az CLI login' - uses: azure/login@v1.4.0 - with: - client-id: {% raw %}${{ secrets.AZURE_CLIENTID }}{% endraw %} - tenant-id: {% raw %}${{ secrets.AZURE_TENANTID }}{% endraw %} - subscription-id: {% raw %}${{ secrets.AZURE_SUBSCRIPTIONID }}{% endraw %} + - name: 'Az CLI login' + uses: azure/login@v1 + with: + client-id: ${{ secrets.AZURE_CLIENT_ID }} + tenant-id: ${{ secrets.AZURE_TENANT_ID }} + subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + + - name: 'Run az commands' + run: | + az account show + az group list ``` - + {% endraw %} diff --git a/content/actions/learn-github-actions/workflow-commands-for-github-actions.md b/content/actions/learn-github-actions/workflow-commands-for-github-actions.md index 9020fe9f87..ef1dd1c4bc 100644 --- a/content/actions/learn-github-actions/workflow-commands-for-github-actions.md +++ b/content/actions/learn-github-actions/workflow-commands-for-github-actions.md @@ -68,7 +68,7 @@ The following table shows which toolkit functions are available within a workflo | ----------------- | ------------- | | `core.addPath` | Accessible using environment file `GITHUB_PATH` | | `core.debug` | `debug` |{% ifversion fpt or ghes > 3.2 or ghae-issue-4929 or ghec %} -| `core.notice` | `notice` |{% endif %} +| `core.notice` | `notice` |{% endif %} | `core.error` | `error` | | `core.endGroup` | `endgroup` | | `core.exportVariable` | Accessible using environment file `GITHUB_ENV` | @@ -76,6 +76,7 @@ The following table shows which toolkit functions are available within a workflo | `core.getState` | Accessible using environment variable `STATE_{NAME}` | | `core.isDebug` | Accessible using environment variable `RUNNER_DEBUG` | | `core.saveState` | `save-state` | +| `core.setCommandEcho` | `echo` | | `core.setFailed` | Used as a shortcut for `::error` and `exit 1` | | `core.setOutput` | `set-output` | | `core.setSecret` | `add-mask` | @@ -246,6 +247,46 @@ jobs: {% endraw %} +## Echoing command outputs + +``` +::echo::on +::echo::off +``` + +Enables or disables echoing of workflow commands. For example, if you use the `set-output` command in a workflow, it sets an output parameter but the workflow run's log does not show the command itself. If you enable command echoing, then the log shows the command, such as `::set-output name={name}::{value}`. + +Command echoing is disabled by default. However, a workflow command is echoed if there are any errors processing the command. + +The `add-mask`, `debug`, `warning`, and `error` commands do not support echoing because their outputs are already echoed to the log. + +You can also enable command echoing globally by turning on step debug logging using the `ACTIONS_STEP_DEBUG` secret. For more information, see "[Enabling debug logging](/actions/managing-workflow-runs/enabling-debug-logging)". In contrast, the `echo` workflow command lets you enable command echoing at a more granular level, rather than enabling it for every workflow in a repository. + +### Example toggling command echoing + +```yaml +jobs: + workflow-command-job: + runs-on: ubuntu-latest + steps: + - name: toggle workflow command echoing + run: | + echo '::set-output name=action_echo::disabled' + echo '::echo::on' + echo '::set-output name=action_echo::enabled' + echo '::echo::off' + echo '::set-output name=action_echo::disabled' +``` + +The step above prints the following lines to the log: + +``` +::set-output name=action_echo::enabled +::echo::off +``` + +Only the second `set-output` and `echo` workflow commands are included in the log because command echoing was only enabled when they were run. Even though it is not always echoed, the output parameter is set in all cases. + ## Sending values to the pre and post actions You can use the `save-state` command to create environment variables for sharing with your workflow's `pre:` or `post:` actions. For example, you can create a file with the `pre:` action, pass the file location to the `main:` action, and then use the `post:` action to delete the file. Alternatively, you could create a file with the `main:` action, pass the file location to the `post:` action, and also use the `post:` action to delete the file. diff --git a/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md b/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md index 5276965dd1..c8426dd9c7 100644 --- a/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md +++ b/content/admin/authentication/managing-your-enterprise-users-with-your-identity-provider/about-enterprise-managed-users.md @@ -61,7 +61,7 @@ To use {% data variables.product.prodname_emus %}, you need a separate type of e Your contact on the GitHub Sales team will work with you to create your new {% data variables.product.prodname_emu_enterprise %}. You'll need to provide the email address for the user who will set up your enterprise and a short code that will be used as the suffix for your enterprise members' usernames. {% data reusables.enterprise-accounts.emu-shortcode %} For more information, see "[Usernames and profile information](#usernames-and-profile-information)." -After we create your enterprise, you will receive an email from {% data variables.product.prodname_dotcom %} inviting you to choose a password for your enterprise's setup user, which will be the first owner in the enterprise. The setup user is only used to configure SAML single sign-on and SCIM provisioning integration for the enterprise. It will no longer have access to administer the enterprise account once SAML is successfully enabled. +After we create your enterprise, you will receive an email from {% data variables.product.prodname_dotcom %} inviting you to choose a password for your enterprise's setup user, which will be the first owner in the enterprise. Use an incognito or private browsing window when setting the password. The setup user is only used to configure SAML single sign-on and SCIM provisioning integration for the enterprise. It will no longer have access to administer the enterprise account once SAML is successfully enabled. The setup user's username is your enterprise's shortcode suffixed with `_admin`. After you log in to your setup user, you can get started by configuring SAML SSO for your enterprise. For more information, see "[Configuring SAML single sign-on for Enterprise Managed Users](/github/setting-up-and-managing-your-enterprise/managing-your-enterprise-users-with-your-identity-provider/configuring-saml-single-sign-on-for-enterprise-managed-users)." diff --git a/content/admin/configuration/configuring-network-settings/configuring-tls.md b/content/admin/configuration/configuring-network-settings/configuring-tls.md index 6e4a222308..9fcec6ca70 100644 --- a/content/admin/configuration/configuring-network-settings/configuring-tls.md +++ b/content/admin/configuration/configuring-network-settings/configuring-tls.md @@ -45,12 +45,12 @@ You can generate a certificate signing request (CSR) for your instance using the ![Radio buttons with options to choose TLS protocols](/assets/images/enterprise/management-console/tls-protocol-support.png) 5. Under "Certificate", click **Choose File** to choose a TLS certificate or certificate chain (in PEM format) to install. This file will usually have a *.pem*, *.crt*, or *.cer* extension. ![Button to find TLS certificate file](/assets/images/enterprise/management-console/install-tls-certificate.png) -6. Under "Unencrypted key", click **Choose File** to choose a TLS key (in PEM format) to install. This file will usually have a *.key* extension. +6. Under "Unencrypted key", click **Choose File** to choose an RSA key (in PEM format) to install. This file will usually have a *.key* extension. ![Button to find TLS key file](/assets/images/enterprise/management-console/install-tls-key.png) {% warning %} - **Warning**: Your TLS key must not have a passphrase. For more information, see "[Removing the passphrase from your key file](/enterprise/{{ currentVersion }}/admin/guides/installation/troubleshooting-ssl-errors#removing-the-passphrase-from-your-key-file)". + **Warning**: Your key must be an RSA key and must not have a passphrase. For more information, see "[Removing the passphrase from your key file](/admin/guides/installation/troubleshooting-ssl-errors#removing-the-passphrase-from-your-key-file)". {% endwarning %} {% data reusables.enterprise_management_console.save-settings %} diff --git a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md index eb0e6bf8aa..829cdf411e 100644 --- a/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md +++ b/content/admin/enterprise-management/updating-the-virtual-machine-and-physical-resources/upgrade-requirements.md @@ -16,7 +16,6 @@ topics: {% note %} **Notes:** -- To upgrade from {% data variables.product.prodname_enterprise %} 11.10.348 through {% data variables.product.current-340-version %}, you must first migrate to {% data variables.product.prodname_enterprise %} 2.1.23. For more information, see "[Migrating from {% data variables.product.prodname_enterprise %} 11.10.x to 2.1.23](/enterprise/{{ currentVersion }}/admin/guides/installation/migrating-from-github-enterprise-11-10-x-to-2-1-23)." - Upgrade packages are available at [enterprise.github.com](https://enterprise.github.com/releases) for supported versions. Verify the availability of the upgrade packages you will need to complete the upgrade. If a package is not available, contact {% data variables.contact.contact_ent_support %} for assistance. - If you're using {% data variables.product.prodname_ghe_server %} Clustering, see "[Upgrading a cluster](/enterprise/{{ currentVersion }}/admin/guides/clustering/upgrading-a-cluster/)" in the {% data variables.product.prodname_ghe_server %} Clustering Guide for specific instructions unique to clustering. - The release notes for {% data variables.product.prodname_ghe_server %} provide a comprehensive list of new features for every version of {% data variables.product.prodname_ghe_server %}. For more information, see the [releases page](https://enterprise.github.com/releases). diff --git a/content/admin/index.md b/content/admin/index.md index 2b160096f3..cf364b8e3a 100644 --- a/content/admin/index.md +++ b/content/admin/index.md @@ -101,6 +101,7 @@ featuredLinks: - '{% ifversion ghec %}/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise{% endif %}' - '{% ifversion ghec %}/admin/user-management/managing-organizations-in-your-enterprise/viewing-the-audit-logs-for-organizations-in-your-enterprise{% endif %}' - '{% ifversion ghec %}/admin/user-management/monitoring-activity-in-your-enterprise/managing-global-webhooks{% endif %}' + - '{% ifversion ghec %}/billing/managing-your-license-for-github-enterprise/using-visual-studio-subscription-with-github-enterprise/setting-up-visual-studio-subscription-with-github-enterprise{% endif %}' - /admin/enterprise-support/about-github-enterprise-support layout: product-landing versions: diff --git a/content/admin/user-management/managing-repositories-in-your-enterprise/migrating-to-internal-repositories.md b/content/admin/user-management/managing-repositories-in-your-enterprise/migrating-to-internal-repositories.md index 6d6bfc2f50..51734f096d 100644 --- a/content/admin/user-management/managing-repositories-in-your-enterprise/migrating-to-internal-repositories.md +++ b/content/admin/user-management/managing-repositories-in-your-enterprise/migrating-to-internal-repositories.md @@ -24,7 +24,7 @@ In future releases of {% data variables.product.prodname_ghe_server %}, we will To prepare for these changes, if you have private mode enabled, you can run a migration on your instance to convert public repositories to internal. This migration is currently optional, to allow you to test the changes on a non-production instance. The migration will become mandatory in the future. -When you run the migration, all public repositories owned by organizations on your instance will become internal repositories. If any of those repositories have forks, the forks will become private. Private repositories will remain private. +When you run the migration, all public repositories owned by organizations on your instance will become internal repositories. If any of those repositories have forks, the forks will be detached from their parent and become private. Private repositories will remain private. All public repositories owned by user accounts on your instance will become private repositories. If any of those repositories have forks, the forks will also become private. The owner of each fork will be given read permissions to the fork's parent. diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md index a9ad10a840..cc9bf504b9 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/log-forwarding.md @@ -17,8 +17,13 @@ topics: - Logging - Security --- + +## About log forwarding + Any log collection system that supports syslog-style log streams is supported (e.g., [Logstash](http://logstash.net/) and [Splunk](http://docs.splunk.com/Documentation/Splunk/latest/Data/Monitornetworkports)). +When you enable log forwarding, you must upload a CA certificate to encrypt communications between syslog endpoints. Your appliance and the remote syslog server will perform two-way SSL, each providing a certificate to the other and validating the certificate which is received. + ## Enabling log forwarding {% ifversion ghes %} @@ -26,8 +31,8 @@ Any log collection system that supports syslog-style log streams is supported (e 1. Select **Enable log forwarding**. 1. In the **Server address** field, type the address of the server to which you want to forward logs. You can specify multiple addresses in a comma-separated list. 1. In the Protocol drop-down menu, select the protocol to use to communicate with the log server. The protocol will apply to all specified log destinations. -1. Select **Enable TLS**. -1. Click **Choose File** and choose a CA certificate to encrypt communication between syslog endpoints. The entire certificate chain will be validated, and must terminate in a root certificate. For more information, see [TLS options in the syslog-ng documentation](https://support.oneidentity.com/technical-documents/syslog-ng-open-source-edition/3.16/administration-guide/56#TOPIC-956599). +1. Optionally, select **Enable TLS**. We recommend enabling TLS according to your local security policies, especially if there are untrusted networks between the appliance and any remote log servers. +1. To encrypt communication between syslog endpoints, click **Choose File** and choose a CA certificate for the remote syslog server. You should upload a CA bundle containing a concatenation of the certificates of the CAs involved in signing the certificate of the remote log server. The entire certificate chain will be validated, and must terminate in a root certificate. For more information, see [TLS options in the syslog-ng documentation](https://support.oneidentity.com/technical-documents/syslog-ng-open-source-edition/3.16/administration-guide/56#TOPIC-956599). {% elsif ghae %} {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.settings-tab %} diff --git a/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md b/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md index 680836daec..3957e660c3 100644 --- a/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md +++ b/content/authentication/authenticating-with-saml-single-sign-on/authorizing-a-personal-access-token-for-use-with-saml-single-sign-on.md @@ -15,6 +15,8 @@ shortTitle: PAT with SAML --- You can authorize an existing personal access token, or [create a new personal access token](/github/authenticating-to-github/creating-a-personal-access-token) and then authorize it. +{% data reusables.saml.authorized-creds-info %} + {% data reusables.user_settings.access_settings %} {% data reusables.user_settings.developer_settings %} {% data reusables.user_settings.personal_access_tokens %} diff --git a/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md b/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md index b8bfcee15a..4a9c0b3218 100644 --- a/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md +++ b/content/authentication/authenticating-with-saml-single-sign-on/authorizing-an-ssh-key-for-use-with-saml-single-sign-on.md @@ -15,6 +15,8 @@ shortTitle: SSH Key with SAML --- You can authorize an existing SSH key, or create a new SSH key and then authorize it. For more information about creating a new SSH key, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." +{% data reusables.saml.authorized-creds-info %} + {% note %} **Note:** If your SSH key authorization is revoked by an organization, you will not be able to reauthorize the same key. You will need to create a new SSH key and authorize it. For more information about creating a new SSH key, see "[Generating a new SSH key and adding it to the ssh-agent](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)." diff --git a/content/billing/index.md b/content/billing/index.md index f6f06cdf36..067b356ef5 100644 --- a/content/billing/index.md +++ b/content/billing/index.md @@ -1,15 +1,46 @@ --- -title: Billing and payments for GitHub +title: Billing and payments on GitHub shortTitle: Billing and payments -intro: '{% ifversion fpt %}{% data variables.product.product_name %} offers free and paid products for every account. You can upgrade, downgrade, and view pending changes to your account''s subscription at any time.{% elsif ghec or ghes or ghae %}{% data variables.product.company_short %} bills for your enterprise members'' {% ifversion ghec or ghae %}usage of {% data variables.product.product_name %}{% elsif ghes %} licence seats for {% data variables.product.product_name %}{% ifversion ghes > 3.0 %} and any additional services that you purchase{% endif %}{% endif %}.{% endif %}' +intro: '{% ifversion fpt %}{% data variables.product.product_name %} offers free and paid products for every account. You can upgrade or downgrade your account''s subscription and manage your billing settings at any time.{% elsif ghec or ghes or ghae %}{% data variables.product.company_short %} bills for your enterprise members'' {% ifversion ghec or ghae %}usage of {% data variables.product.product_name %}{% elsif ghes %} licence seats for {% data variables.product.product_name %}{% ifversion ghes > 3.0 %} and any additional services that you purchase{% endif %}{% endif %}. {% endif %}{% ifversion ghec %} You can view your subscription and manage your billing settings at any time. {% endif %}{% ifversion fpt or ghec %} You can also view usage and manage spending limits for {% data variables.product.product_name %} features such as {% data variables.product.prodname_actions %}, {% data variables.product.prodname_registry %}, and {% data variables.product.prodname_codespaces %}.{% endif %}' redirect_from: - /github/setting-up-and-managing-billing-and-payments-on-github - /categories/setting-up-and-managing-billing-and-payments-on-github +introLinks: + overview: '{% ifversion fpt or ghec %}/billing/managing-your-github-billing-settings/about-billing-on-github{% elsif ghes%}/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise{% endif %}' +featuredLinks: + guides: + - '{% ifversion fpt or ghec %}/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method{% endif %}' + - '{% ifversion fpt %}/billing/managing-billing-for-your-github-account/upgrading-your-github-subscription{% endif %}' + - '{% ifversion ghec %}/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise{% endif %}' + - '{% ifversion fpt or ghec %}/billing/managing-your-github-billing-settings/setting-your-billing-email{% endif %}' + - '{% ifversion fpt or ghec %}/billing/managing-billing-for-your-github-account/about-per-user-pricing{% endif %}' + - '{% ifversion ghes %}/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account{% endif %}' + - '{% ifversion ghes %}/billing/managing-your-license-for-github-enterprise/about-licenses-for-github-enterprise{% endif %}' + - '{% ifversion ghes %}/billing/managing-your-license-for-github-enterprise/viewing-license-usage-for-github-enterprise{% endif %}' + - '{% ifversion ghae %}/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise{% endif %}' + popular: + - '{% ifversion ghec %}/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account{% endif %}' + - '{% ifversion fpt or ghec %}/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription{% endif %}' + - '{% ifversion fpt or ghec %}/billing/managing-billing-for-github-actions/about-billing-for-github-actions{% endif %}' + - '{% ifversion fpt or ghec %}/billing/managing-billing-for-github-codespaces/about-billing-for-codespaces{% endif %}' + - '{% ifversion ghes %}/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security{% endif %}' + - '{% ifversion ghes %}/billing/managing-billing-for-github-advanced-security/viewing-your-github-advanced-security-usage{% endif %}' + - '{% ifversion ghes %}/billing/managing-your-license-for-github-enterprise/uploading-a-new-license-to-github-enterprise-server{% endif %}' + - '{% ifversion ghae %}/billing/managing-billing-for-your-github-account/about-billing-for-your-enterprise{% endif %}' + guideCards: + - /billing/managing-your-github-billing-settings/removing-a-payment-method + - /billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process + - /billing/managing-billing-for-git-large-file-storage/upgrading-git-large-file-storage + - '{% ifversion ghes %}/billing/managing-your-license-for-github-enterprise/downloading-your-license-for-github-enterprise{% endif %}' + - '{% ifversion ghes %}/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud{% endif %}' +layout: product-landing versions: fpt: '*' - ghec: '*' ghes: '*' ghae: '*' + ghec: '*' +topics: + - Billing children: - /managing-your-github-billing-settings - /managing-billing-for-your-github-account @@ -17,10 +48,10 @@ children: - /managing-billing-for-github-codespaces - /managing-billing-for-github-packages - /managing-your-license-for-github-enterprise + - /managing-licenses-for-visual-studio-subscriptions-with-github-enterprise - /managing-billing-for-github-advanced-security - /managing-billing-for-github-sponsors - /managing-billing-for-github-marketplace-apps - /managing-billing-for-git-large-file-storage - /setting-up-paid-organizations-for-procurement-companies ---- - +--- \ No newline at end of file diff --git a/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md b/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md new file mode 100644 index 0000000000..86724905ed --- /dev/null +++ b/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise.md @@ -0,0 +1,51 @@ +--- +title: About Visual Studio subscriptions with GitHub Enterprise +intro: 'You can give {% data variables.product.prodname_vs %} subscribers on your team access to {% data variables.product.prodname_enterprise %} with a combined offering from Microsoft.' +redirect_from: + - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account/managing-licenses-for-visual-studio-subscription-with-github-enterprise + - /github/setting-up-and-managing-your-enterprise/managing-licenses-for-the-github-enterprise-and-visual-studio-bundle + - /github/setting-up-and-managing-your-enterprise-account/managing-licenses-for-the-github-enterprise-and-visual-studio-bundle + - /github/articles/about-the-github-and-visual-studio-bundle + - /articles/about-the-github-and-visual-studio-bundle + - /github/setting-up-and-managing-your-enterprise-account/managing-licenses-for-visual-studio-subscription-with-github-enterprise + - /github/setting-up-and-managing-your-enterprise/managing-licenses-for-visual-studio-subscription-with-github-enterprise + - /billing/managing-your-license-for-github-enterprise/managing-licenses-for-visual-studio-subscription-with-github-enterprise +versions: + ghec: '*' +type: overview +topics: + - Enterprise + - Licensing +shortTitle: About +--- + +## About {% data variables.product.prodname_vss_ghe %} + +{% data reusables.enterprise-accounts.vss-ghe-description %} {% data variables.product.prodname_vss_ghe %} is available from Microsoft under the terms of the Microsoft Enterprise Agreement. For more information, see [{% data variables.product.prodname_vss_ghe %}](https://visualstudio.microsoft.com/subscriptions/visual-studio-github/) on the {% data variables.product.prodname_vs %} website. + +To use the {% data variables.product.prodname_enterprise %} portion of the license, each subscriber's user account on {% data variables.product.prodname_dotcom_the_website %} must be or become a member of an organization owned by your enterprise on {% data variables.product.prodname_dotcom_the_website %}. To accomplish this, organization owners can invite new members to an organization by email address. The subscriber can accept the invitation with an existing user account on {% data variables.product.prodname_dotcom_the_website %} or create a new account. + +For more information about the setup of {% data variables.product.prodname_vss_ghe %}, see "[Setting up {% data variables.product.prodname_vss_ghe %}](/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise)." + +## About licenses for {% data variables.product.prodname_vss_ghe %} + +After you assign a license for {% data variables.product.prodname_vss_ghe %} to a subscriber, the subscriber will use the {% data variables.product.prodname_enterprise %} portion of the license by joining an organization in your enterprise with a user account on {% data variables.product.prodname_dotcom_the_website %}. If the email address for the user account of an enterprise member on {% data variables.product.prodname_dotcom_the_website %} matches the User Primary Name (UPN) for a subscriber to your {% data variables.product.prodname_vs %} account, the {% data variables.product.prodname_vs %} subscriber will automatically consume one license for {% data variables.product.prodname_vss_ghe %}. + +The total quantity of your licenses for your enterprise on {% data variables.product.prodname_dotcom %} is the sum of any standard {% data variables.product.prodname_enterprise %} licenses and the number of {% data variables.product.prodname_vs %} subscription licenses that include access to {% data variables.product.prodname_dotcom %}. If the user account for an enterprise member does not correspond with the email address for a {% data variables.product.prodname_vs %} subscriber, the license that the user account consumes is unavailable for a {% data variables.product.prodname_vs %} subscriber. + +For more information about {% data variables.product.prodname_enterprise %}, see "[{% data variables.product.company_short %}'s products](/github/getting-started-with-github/githubs-products#github-enterprise)." For more information about accounts on {% data variables.product.prodname_dotcom_the_website %}, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/github/getting-started-with-github/types-of-github-accounts)." + +You can view the number of {% data variables.product.prodname_enterprise %} licenses available to your enterprise on {% data variables.product.product_location %}. The list of pending invitations includes subscribers who are not yet members of at least one organization in your enterprise. For more information, see "[Viewing the subscription and usage for your enterprise account](/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)" and "[Viewing people in your enterprise](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise#viewing-members-and-outside-collaborators)." + +{% tip %} + +**Tip**: If you download a CSV file with your enterprise's license usage in step 6 of "[Viewing the subscription and usage for your enterprise account](/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account#viewing-the-subscription-and-usage-for-your-enterprise-account)," any members with a missing value for the "Name" or "Profile" columns have not yet accepted an invitation to join an organization within the enterprise. + +{% endtip %} + +You can also see pending {% data variables.product.prodname_enterprise %} invitations to subscribers in {% data variables.product.prodname_vss_admin_portal_with_url %}. + +## Further reading + +- [{% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/visualstudio/subscriptions/access-github) in Microsoft Docs +- [Use {% data variables.product.prodname_vs %} or {% data variables.product.prodname_vscode %} to deploy apps from {% data variables.product.prodname_dotcom %}](https://docs.microsoft.com/en-us/azure/developer/github/deploy-with-visual-studio) in Microsoft Docs \ No newline at end of file diff --git a/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/index.md b/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/index.md new file mode 100644 index 0000000000..aa388b4c2b --- /dev/null +++ b/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/index.md @@ -0,0 +1,11 @@ +--- +title: Managing licenses for Visual Studio subscriptions with GitHub Enterprise +shortTitle: Visual Studio & GitHub Enterprise +intro: '{% data reusables.enterprise-accounts.vss-ghe-description %}' +versions: + ghec: '*' +children: + - /about-visual-studio-subscriptions-with-github-enterprise + - /setting-up-visual-studio-subscriptions-with-github-enterprise +--- + diff --git a/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md b/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md new file mode 100644 index 0000000000..fddb22eb95 --- /dev/null +++ b/content/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/setting-up-visual-studio-subscriptions-with-github-enterprise.md @@ -0,0 +1,68 @@ +--- +title: Setting up Visual Studio subscriptions with GitHub Enterprise +intro: "Your team's subscription to {% data variables.product.prodname_vs %} can also provide access to {% data variables.product.prodname_enterprise %}." +versions: + ghec: '*' +type: how_to +topics: + - Enterprise + - Licensing +shortTitle: Set up +--- + +## About setup of {% data variables.product.prodname_vss_ghe %} + +{% data reusables.enterprise-accounts.vss-ghe-description %} For more information, see "[About {% data variables.product.prodname_vss_ghe %}](/billing/managing-licenses-for-visual-studio-subscriptions-with-github-enterprise/about-visual-studio-subscriptions-with-github-enterprise)." + +This guide shows you how your team can get {% data variables.product.prodname_vs %} subscribers licensed and started with {% data variables.product.prodname_enterprise %}. + +## Roles for {% data variables.product.prodname_vss_ghe %} + +Before setting up {% data variables.product.prodname_vss_ghe %}, it's important to understand the roles for this combined offering. + +| Role | Service | Description | More information | +| :- | :- | :- | :- | +| **Subscriptions admin** | {% data variables.product.prodname_vs %} subscription | Person who assigns licenses for {% data variables.product.prodname_vs %} subscription | [Overview of admin responsibilities](https://docs.microsoft.com/en-us/visualstudio/subscriptions/admin-responsibilities) in Microsoft Docs | +| **Subscriber** | {% data variables.product.prodname_vs %} subscription | Person who uses a license for {% data variables.product.prodname_vs %} subscription | [Visual Studio Subscriptions documentation](https://docs.microsoft.com/en-us/visualstudio/subscriptions/) in Microsoft Docs | +| **Enterprise owner** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's an administrator of an enterprise on {% data variables.product.product_location %} | "[Roles in an enterprise](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-owner)" | +| **Organization owner** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's an owner of an organization in your team's enterprise on {% data variables.product.product_location %} | "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#organization-owners)" | +| **Enterprise member** | {% data variables.product.prodname_dotcom %} | Person who has a user account that's a member of an enterprise on {% data variables.product.product_location %} | "[Roles in an enterprise](/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise#enterprise-members)" | + +## Prerequisites + +- Your team's {% data variables.product.prodname_vs %} subscription must include {% data variables.product.prodname_enterprise %}. For more information, see [{% data variables.product.prodname_vs %} Subscriptions and Benefits](https://visualstudio.microsoft.com/subscriptions/) on the {% data variables.product.prodname_vs %} website and + [Overview of admin responsibilities](https://docs.microsoft.com/en-us/visualstudio/subscriptions/admin-responsibilities) in Microsoft Docs. + + - Your team must have an enterprise on {% data variables.product.product_location %}. If you're not sure whether your team has an enterprise, contact your {% data variables.product.prodname_dotcom %} administrator. If you're not sure who on your team is responsible for {% data variables.product.prodname_dotcom %}, contact {% data variables.contact.contact_enterprise_sales %}. For more information, see "[About enterprise accounts](/admin/overview/about-enterprise-accounts)." + +## Setting up {% data variables.product.prodname_vss_ghe %} + +To set up {% data variables.product.prodname_vss_ghe %}, members of your team must complete the following tasks. + +One person may be able to complete the tasks because the person has all of the roles, but you may need to coordinate the tasks with multiple people. For more information, see "[Roles for {% data variables.product.prodname_vss_ghe %}](#roles-for-visual-studio-subscriptions-with-github-enterprise)." + +1. An [enterprise owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) must create at least one organization in your enterprise on {% data variables.product.product_location %}. For more information, see "[Adding organizations to your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise)." + +1. The [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) must assign a license for {% data variables.product.prodname_vs %} to a [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) in {% data variables.product.prodname_vss_admin_portal_with_url %}. For more information, see [Overview of the {% data variables.product.prodname_vs %} Subscriptions Administrator Portal](https://docs.microsoft.com/en-us/visualstudio/subscriptions/using-admin-portal) and [Assign {% data variables.product.prodname_vs %} Licenses in the {% data variables.product.prodname_vs %} Subscriptions Administration Portal](https://docs.microsoft.com/en-us/visualstudio/subscriptions/assign-license) in Microsoft Docs. + +1. Optionally, if the [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) assigned licenses to [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise) in {% data variables.product.prodname_vs %} before adding {% data variables.product.prodname_enterprise %} to the subscription, the [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) can move the [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise) to the combined offering in the {% data variables.product.prodname_vs %} administration portal. For more information, see [Manage {% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/en-us/visualstudio/subscriptions/assign-github#moving-to-visual-studio-with-github-enterprise) in Microsoft Docs. + +1. If the [subscription admin](#roles-for-visual-studio-subscriptions-with-github-enterprise) has not disabled email notifications, the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) will receive two confirmation emails. For more information, see [{% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/en-us/visualstudio/subscriptions/access-github#what-is-the-visual-studio-subscription-with-github-enterprise-setup-process) in Microsoft Docs. + +1. An [organization owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) must invite the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) to the organization on {% data variables.product.product_location %} from step 1. The [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) can accept the invitation with an existing user account on {% data variables.product.prodname_dotcom_the_website %} or create a new account. After the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) joins the organization, the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) becomes an [enterprise member](#roles-for-visual-studio-subscriptions-with-github-enterprise). For more information, see "[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)." + + {% tip %} + + **Tips**: + + - While not required, we recommend that the [organization owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) sends an invitation to the same email address used for the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise)'s User Primary Name (UPN). When the email address on {% data variables.product.product_location %} matches the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise)'s UPN, you can ensure that another [enterprise member](#roles-for-visual-studio-subscriptions-with-github-enterprise) does not claim the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise)'s license. + - If the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) accepts the invitation to the organization with an existing user account on {% data variables.product.product_location %}, we recommend that the [subscriber](#roles-for-visual-studio-subscriptions-with-github-enterprise) add the email address they use for {% data variables.product.prodname_vs %} to their user account on {% data variables.product.product_location %}. For more information, see "[Adding an email address to your {% data variables.product.prodname_dotcom %} account](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences/adding-an-email-address-to-your-github-account)." + - If the [organization owner](#roles-for-visual-studio-subscriptions-with-github-enterprise) must invite a large number of [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise), a script may make the process faster. For more information, see [the sample PowerShell script](https://github.com/github/platform-samples/blob/master/api/powershell/invite_members_to_org.ps1) in the `github/platform-samples` repository. + + {% endtip %} + +After {% data variables.product.prodname_vss_ghe %} is set up for [subscribers](#roles-for-visual-studio-subscriptions-with-github-enterprise) on your team, [enterprise owners](#roles-for-visual-studio-subscriptions-with-github-enterprise) can review licensing information on {% data variables.product.product_location %}. For more information, see "[Viewing the subscription and usage for your enterprise account](/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)." + +## Further reading + +- "[Getting started with {% data variables.product.prodname_ghe_cloud %}](/get-started/onboarding/getting-started-with-github-enterprise-cloud)" diff --git a/content/billing/managing-your-license-for-github-enterprise/index.md b/content/billing/managing-your-license-for-github-enterprise/index.md index f8176923f8..617e5c273f 100644 --- a/content/billing/managing-your-license-for-github-enterprise/index.md +++ b/content/billing/managing-your-license-for-github-enterprise/index.md @@ -23,6 +23,5 @@ children: - /uploading-a-new-license-to-github-enterprise-server - /viewing-license-usage-for-github-enterprise - /syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud - - /managing-licenses-for-visual-studio-subscription-with-github-enterprise --- diff --git a/content/billing/managing-your-license-for-github-enterprise/managing-licenses-for-visual-studio-subscription-with-github-enterprise.md b/content/billing/managing-your-license-for-github-enterprise/managing-licenses-for-visual-studio-subscription-with-github-enterprise.md deleted file mode 100644 index cb52eab49f..0000000000 --- a/content/billing/managing-your-license-for-github-enterprise/managing-licenses-for-visual-studio-subscription-with-github-enterprise.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Managing licenses for Visual Studio subscription with GitHub Enterprise -intro: 'You can manage {% data variables.product.prodname_enterprise %} licensing for {% data variables.product.prodname_vss_ghe %}.' -redirect_from: - - /github/setting-up-and-managing-your-enterprise/managing-your-enterprise-account/managing-licenses-for-visual-studio-subscription-with-github-enterprise - - /github/setting-up-and-managing-your-enterprise/managing-licenses-for-the-github-enterprise-and-visual-studio-bundle - - /github/setting-up-and-managing-your-enterprise-account/managing-licenses-for-the-github-enterprise-and-visual-studio-bundle - - /github/articles/about-the-github-and-visual-studio-bundle - - /articles/about-the-github-and-visual-studio-bundle - - /github/setting-up-and-managing-your-enterprise-account/managing-licenses-for-visual-studio-subscription-with-github-enterprise - - /github/setting-up-and-managing-your-enterprise/managing-licenses-for-visual-studio-subscription-with-github-enterprise -versions: - ghec: '*' -topics: - - Enterprise -shortTitle: Visual Studio bundle ---- -## About {% data variables.product.prodname_vss_ghe %} - -{% data variables.product.prodname_vss_ghe %} is a combined offering from Microsoft that allows a subscriber to use both {% data variables.product.prodname_enterprise %} and {% data variables.product.prodname_vs %}. {% data variables.product.prodname_vss_ghe %} is available from Microsoft under the terms of the Microsoft Enterprise Agreement. For more information, see [{% data variables.product.prodname_vss_ghe %}](https://visualstudio.microsoft.com/subscriptions/visual-studio-github/) on the {% data variables.product.prodname_vs %} website. - -After you assign a license for {% data variables.product.prodname_vss_ghe %} to a subscriber, the subscriber will use the {% data variables.product.prodname_enterprise %} portion of the license by joining an organization in your enterprise account with a user account on {% data variables.product.prodname_dotcom_the_website %}. If the email address for the user account of an enterprise member on {% data variables.product.prodname_dotcom_the_website %} matches the User Primary Name (UPN) for a subscriber to your {% data variables.product.prodname_vs %} account, the {% data variables.product.prodname_vs %} subscriber will automatically consume one license for {% data variables.product.prodname_vss_ghe %}. - -The total quantity of your licenses for your enterprise on {% data variables.product.prodname_dotcom %} is the sum of any standard {% data variables.product.prodname_enterprise %} licenses and the number of {% data variables.product.prodname_vs %} subscription licenses that include access to {% data variables.product.prodname_dotcom %}. If the user account for an enterprise member does not correspond with the email address for a {% data variables.product.prodname_vs %} subscriber, the license that the user account consumes is unavailable for a {% data variables.product.prodname_vs %} subscriber. - -For more information about {% data variables.product.prodname_enterprise %}, see "[{% data variables.product.company_short %}'s products](/github/getting-started-with-github/githubs-products#github-enterprise)." For more information about accounts on {% data variables.product.prodname_dotcom_the_website %}, see "[Types of {% data variables.product.prodname_dotcom %} accounts](/github/getting-started-with-github/types-of-github-accounts)." - -## Prerequisites - -1. After you buy {% data variables.product.prodname_vss_ghe %}, contact {% data variables.contact.contact_enterprise_sales %} and mention "{% data variables.product.prodname_vss_ghe %}." You'll work with the Sales team to create an enterprise account on {% data variables.product.prodname_dotcom_the_website %}. If you already have an enterprise account on {% data variables.product.prodname_dotcom_the_website %}, or if you're not sure, please tell our Sales team. - -2. Assign licenses for {% data variables.product.prodname_vss_ghe %} to subscribers in {% data variables.product.prodname_vss_admin_portal_with_url %}. For more information about assigning licenses, see [Manage {% data variables.product.prodname_vs %} subscriptions with {% data variables.product.prodname_enterprise %}](https://docs.microsoft.com/visualstudio/subscriptions/assign-github) in the Microsoft Docs. - -3. On {% data variables.product.prodname_dotcom_the_website %}, create at least one organization owned by your enterprise account. For more information, see "[Adding organizations to your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise)." - -## Inviting a subscriber to use {% data variables.product.prodname_enterprise %} - -To use the {% data variables.product.prodname_enterprise %} portion of the license, the subscriber's user account on {% data variables.product.prodname_dotcom_the_website %} must be or become a member of an organization owned by your enterprise on {% data variables.product.prodname_dotcom_the_website %}. - -Organization owners can invite new members to an organization by email address. The subscriber can accept the invitation with an existing user account on {% data variables.product.prodname_dotcom_the_website %} or create a new account. - -While not required, we recommend that organization owners send an invitation to the same email address used for the {% data variables.product.prodname_vs %} subscriber's User Primary Name (UPN). When the email address on {% data variables.product.product_name %} matches the subscriber's UPN, you can ensure that another member of the organization does not claim the subscriber's license. - -For more information, see "[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)," "[Signing up for {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/signing-up-for-github)," and "[Managing email preferences](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-email-preferences)." - -## Viewing {% data variables.product.prodname_enterprise %} licensing - -After assigning a license for {% data variables.product.prodname_vss_ghe %} in {% data variables.product.prodname_vss_admin_portal_with_url %}, you can view the number of {% data variables.product.prodname_enterprise %} licenses available to your enterprise account. For more information, see "[Viewing the subscription and usage for your enterprise account](/billing/managing-billing-for-your-github-account/viewing-the-subscription-and-usage-for-your-enterprise-account)." - -You can also see pending {% data variables.product.prodname_enterprise %} invitations to subscribers in {% data variables.product.prodname_vss_admin_portal_with_url %}. The list of pending invitations includes subscribers who are not yet members of at least one organization in your enterprise account. For more information, see "[Viewing people in your enterprise](/admin/user-management/managing-users-in-your-enterprise/viewing-people-in-your-enterprise#viewing-members-and-outside-collaborators)." - -## Further reading - -- [Introducing Visual Studio subscriptions with GitHub Enterprise](https://docs.microsoft.com/visualstudio/subscriptions/access-github) in the Microsoft Docs diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md index 211ce54ec4..96dec45cdf 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/troubleshooting-the-codeql-workflow.md @@ -35,6 +35,24 @@ topics: To produce more detailed logging output, you can enable step debug logging. For more information, see "[Enabling debug logging](/actions/managing-workflow-runs/enabling-debug-logging#enabling-step-debug-logging)." +{% ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5601 %} + +## Creating {% data variables.product.prodname_codeql %} debugging artifacts + +You can obtain artifacts to help you debug {% data variables.product.prodname_codeql %} by setting a debug configuration flag. Modify the `init` step of your {% data variables.product.prodname_codeql %} workflow file and set `debug: true`. + +``` +- name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + debug: true +``` +The debug artifacts will be uploaded to the workflow run as an artifact named `debug-artifacts`. The data contains the {% data variables.product.prodname_codeql %} logs, {% data variables.product.prodname_codeql %} database(s), and any SARIF file(s) produced by the workflow. + +These artifacts will help you debug problems with {% data variables.product.prodname_codeql %} code scanning. If you contact GitHub support, they might ask for this data. + +{% endif %} + ## Automatic build for a compiled language fails If an automatic build of code for a compiled language within your project fails, try the following troubleshooting steps. diff --git a/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md b/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md index 1f83339324..365eee209c 100644 --- a/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md +++ b/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md @@ -26,7 +26,11 @@ topics: {% data variables.product.company_short %} performs {% data variables.product.prodname_secret_scanning %} on {% ifversion fpt or ghec %}public and private{% endif %} repositories for secret patterns provided by {% data variables.product.company_short %} and {% data variables.product.company_short %} partners. For more information on the {% data variables.product.prodname_secret_scanning %} partner program, see "Secret scanning partner program." -However, there can be situations where you want to scan for other secret patterns in your {% ifversion fpt or ghec %}private{% endif %} repositories. For example, you might have a secret pattern that is internal to your organization. For these situations, you can define custom {% data variables.product.prodname_secret_scanning %} patterns in your enterprise, organization, or {% ifversion fpt or ghec %}private{% endif %} repository on {% data variables.product.product_name %}. You can define up to 500 custom patterns for each organization or enterprise account, and up to 100 custom patterns per {% ifversion fpt or ghec %}private{% endif %} repository. +However, there can be situations where you want to scan for other secret patterns in your {% ifversion fpt or ghec %}private{% endif %} repositories. For example, you might have a secret pattern that is internal to your organization. For these situations, you can define custom {% data variables.product.prodname_secret_scanning %} patterns in your enterprise, organization, or {% ifversion fpt or ghec %}private{% endif %} repository on {% data variables.product.product_name %}. You can define up to +{%- ifversion fpt or ghec or ghes > 3.3 %} 500 custom patterns for each organization or enterprise account, and up to 100 custom patterns per {% ifversion fpt or ghec %}private{% endif %} repository. +{%- elsif ghes = 3.3 %} 100 custom patterns for each organization or enterprise account, and per repository. +{%- else %} 20 custom patterns for each organization or enterprise account, and per repository. +{%- endif %} {% ifversion ghes < 3.3 or ghae %} {% note %} diff --git a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md index bbe6c925b7..14ea4e4b20 100644 --- a/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md +++ b/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md @@ -59,7 +59,7 @@ You can use the dependency graph to: - Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion fpt or ghec %} - View a summary of the dependencies used in your organization's repositories in a single dashboard. For more information, see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization#viewing-organization-dependency-insights)."{% endif %} - View and update vulnerable dependencies for your repository. For more information, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)."{% ifversion fpt or ghes > 3.1 or ghec %} -- See information about vulnerable dependencies in pull requests. For more information, see "[Reviewing dependency changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request)."{% endif %} +- See information about vulnerable dependencies in pull requests. For more information, see "[Reviewing dependency changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request)."{% endif %} ## Enabling the dependency graph diff --git a/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md b/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md index e13710c52c..9d91fc58fd 100644 --- a/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md +++ b/content/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization.md @@ -34,7 +34,7 @@ If you selected a specific amount of time to block the user, they will be automa {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} -{% data reusables.organizations.block_users %} +{% data reusables.organizations.moderation-settings %} 5. Under "Blocked users", next to the user you'd like to unblock, click **Unblock**. ![Unblock user button](/assets/images/help/organizations/org-unblock-user-button.png) diff --git a/content/get-started/getting-started-with-git/managing-remote-repositories.md b/content/get-started/getting-started-with-git/managing-remote-repositories.md index 678c2f8733..3ffdb947b4 100644 --- a/content/get-started/getting-started-with-git/managing-remote-repositories.md +++ b/content/get-started/getting-started-with-git/managing-remote-repositories.md @@ -172,7 +172,7 @@ $ git remote -v ### Troubleshooting: Could not rename config section 'remote.[old name]' to 'remote.[new name]' -This error means that the remote you tried the old remote name you typed doesn't exist. +This error means that the old remote name you typed doesn't exist. You can check which remotes currently exist with the `git remote -v` command: diff --git a/content/get-started/quickstart/create-a-repo.md b/content/get-started/quickstart/create-a-repo.md index 9f74482939..56c2e95fd0 100644 --- a/content/get-started/quickstart/create-a-repo.md +++ b/content/get-started/quickstart/create-a-repo.md @@ -61,13 +61,9 @@ Congratulations! You've successfully created your first repository, and initiali {% data reusables.cli.cli-learn-more %} 1. In the command line, navigate to the directory where you would like to create a local clone of your new project. -2. To create a repository for your project, use the `gh repo create` subcommand. Replace `project-name` with the desired name for your repository. If you want your project to belong to an organization instead of to your user account, specify the organization name and project name with `organization-name/project-name`. - - ```shell - gh repo create project-name - ``` - -3. Follow the interactive prompts. To clone the repository locally, confirm yes when asked if you would like to clone the remote project directory. Alternatively, you can specify arguments to skip these prompts. For more information about possible arguments, see [the {% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/gh_repo_create). +2. To create a repository for your project, use the `gh repo create` subcommand. When prompted, select **Create a new repository on GitHub from scratch** and enter the name of your new project. If you want your project to belong to an organization instead of to your user account, specify the organization name and project name with `organization-name/project-name`. +3. Follow the interactive prompts. To clone the repository locally, confirm yes when asked if you would like to clone the remote project directory. +4. Alternatively, to skip the prompts supply the repository name and a visibility flag (`--public`, `--private`, or `--internal`). For example, `gh repo create project-name --public`. To clone the repository locally, pass the `--clone` flag. For more information about possible arguments, see the [GitHub CLI manual](https://cli.github.com/manual/gh_repo_create). {% endcli %} diff --git a/content/get-started/using-git/splitting-a-subfolder-out-into-a-new-repository.md b/content/get-started/using-git/splitting-a-subfolder-out-into-a-new-repository.md index 486fc035de..f070c323c5 100644 --- a/content/get-started/using-git/splitting-a-subfolder-out-into-a-new-repository.md +++ b/content/get-started/using-git/splitting-a-subfolder-out-into-a-new-repository.md @@ -17,65 +17,74 @@ shortTitle: Splitting a subfolder If you create a new clone of the repository, you won't lose any of your Git history or changes when you split a folder into a separate repository. {% data reusables.command_line.open_the_multi_os_terminal %} + 2. Change the current working directory to the location where you want to create your new repository. -3. Clone the repository that contains the subfolder. - ```shell - $ git clone https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY-NAME - ``` + +4. Clone the repository that contains the subfolder. + ```shell + $ git clone https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY-NAME + ``` + 4. Change the current working directory to your cloned repository. - ```shell - $ cd REPOSITORY-NAME - ``` + ```shell + $ cd REPOSITORY-NAME + ``` + 5. To filter out the subfolder from the rest of the files in the repository, run [`git filter-repo`](https://github.com/newren/git-filter-repo), supplying this information: - - `FOLDER-NAME`: The folder within your project where you'd like to create a separate repository. + - `FOLDER-NAME`: The folder within your project where you'd like to create a separate repository. - {% windows %} + {% windows %} - {% tip %} + {% tip %} - **Tip:** Windows users should use `/` to delimit folders. + **Tip:** Windows users should use `/` to delimit folders. - {% endtip %} + {% endtip %} - {% endwindows %} + {% endwindows %} - ```shell - $ git filter-repo --path FOLDER-NAME1/ --path FOLDER-NAME2/ - # Filter the specified branch in your directory and remove empty commits - > Rewrite 48dc599c80e20527ed902928085e7861e6b3cbe6 (89/89) - > Ref 'refs/heads/BRANCH-NAME' was rewritten - ``` - The repository should now only contain the files that were in your subfolder(s). + ```shell + $ git filter-repo --path FOLDER-NAME1/ --path FOLDER-NAME2/ + # Filter the specified branch in your directory and remove empty commits + > Rewrite 48dc599c80e20527ed902928085e7861e6b3cbe6 (89/89) + > Ref 'refs/heads/BRANCH-NAME' was rewritten + ``` + + The repository should now only contain the files that were in your subfolder(s). 6. [Create a new repository](/articles/creating-a-new-repository/) on {% data variables.product.product_name %}. + 7. At the top of your new repository on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}'s Quick Setup page, click {% octicon "clippy" aria-label="The copy to clipboard icon" %} to copy the remote repository URL. - ![Copy remote repository URL field](/assets/images/help/repository/copy-remote-repository-url-quick-setup.png) + + ![Copy remote repository URL field](/assets/images/help/repository/copy-remote-repository-url-quick-setup.png) - {% tip %} + {% tip %} - **Tip:** For information on the difference between HTTPS and SSH URLs, see "[About remote repositories](/github/getting-started-with-github/about-remote-repositories)." + **Tip:** For information on the difference between HTTPS and SSH URLs, see "[About remote repositories](/github/getting-started-with-github/about-remote-repositories)." - {% endtip %} + {% endtip %} 8. Check the existing remote name for your repository. For example, `origin` or `upstream` are two common choices. - ```shell - $ git remote -v - > origin https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY-NAME.git (fetch) - > origin https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY-NAME.git (push) - ``` + ```shell + $ git remote -v + > origin https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY-NAME.git (fetch) + > origin https://{% data variables.command_line.codeblock %}/USERNAME/REPOSITORY-NAME.git (push) + ``` 9. Set up a new remote URL for your new repository using the existing remote name and the remote repository URL you copied in step 7. - ```shell - git remote set-url origin https://{% data variables.command_line.codeblock %}/USERNAME/NEW-REPOSITORY-NAME.git - ``` + ```shell + git remote set-url origin https://{% data variables.command_line.codeblock %}/USERNAME/NEW-REPOSITORY-NAME.git + ``` + 10. Verify that the remote URL has changed with your new repository name. - ```shell - $ git remote -v - # Verify new remote URL - > origin https://{% data variables.command_line.codeblock %}/USERNAME/NEW-REPOSITORY-NAME.git (fetch) - > origin https://{% data variables.command_line.codeblock %}/USERNAME/NEW-REPOSITORY-NAME.git (push) - ``` + ```shell + $ git remote -v + # Verify new remote URL + > origin https://{% data variables.command_line.codeblock %}/USERNAME/NEW-REPOSITORY-NAME.git (fetch) + > origin https://{% data variables.command_line.codeblock %}/USERNAME/NEW-REPOSITORY-NAME.git (push) + ``` + 11. Push your changes to the new repository on {% data variables.product.product_name %}. - ```shell - git push -u origin BRANCH-NAME - ``` + ```shell + git push -u origin BRANCH-NAME + ``` diff --git a/content/get-started/using-github/keyboard-shortcuts.md b/content/get-started/using-github/keyboard-shortcuts.md index 77555bfdc4..bc0dfabdb6 100644 --- a/content/get-started/using-github/keyboard-shortcuts.md +++ b/content/get-started/using-github/keyboard-shortcuts.md @@ -18,6 +18,9 @@ versions: Typing ? on {% data variables.product.prodname_dotcom %} brings up a dialog box that lists the keyboard shortcuts available for that page. You can use these keyboard shortcuts to perform actions across the site without using your mouse to navigate. +{% if keyboard-shortcut-accessibility-setting %} +You can disable character key shortcuts, while still allowing shortcuts that use modifier keys, in your accessibility settings. For more information, see "[Managing accessibility settings](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-accessibility-settings)."{% endif %} + Below is a list of some of the available keyboard shortcuts. {% if command-palette %} The {% data variables.product.prodname_command_palette %} also gives you quick access to a wide range of actions, without the need to remember keyboard shortcuts. For more information, see "[{% data variables.product.prodname_command_palette %}](/get-started/using-github/github-command-palette)."{% endif %} diff --git a/content/github-cli/github-cli/creating-github-cli-extensions.md b/content/github-cli/github-cli/creating-github-cli-extensions.md index 2f0c082cba..589ce46209 100644 --- a/content/github-cli/github-cli/creating-github-cli-extensions.md +++ b/content/github-cli/github-cli/creating-github-cli-extensions.md @@ -70,8 +70,8 @@ You can use the `gh extension create` command to create a project for your exten ```shell git init -b main - gh repo create gh-EXTENSION-NAME --confirm - git add . && git commit -m "initial commit" && git push --set-upstream origin main + git add . && git commit -m "initial commit" + gh repo create gh-EXTENSION-NAME --source=. --public --push ``` 1. Optionally, to help other users discover your extension, add the repository topic `gh-extension`. This will make the extension appear on the [`gh-extension` topic page](https://github.com/topics/gh-extension). For more information about how to add a repository topic, see "[Classifying your repository with topics](/github/administering-a-repository/managing-repository-settings/classifying-your-repository-with-topics)." diff --git a/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md b/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md index 3989d73c34..5011d23fb9 100644 --- a/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md +++ b/content/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line.md @@ -34,24 +34,17 @@ shortTitle: Add a project locally git init -b main ``` -1. To create a repository for your project on {% data variables.product.product_name %}, use the `gh repo create` subcommand. Replace `project-name` with the desired name for your repository. If you want your project to belong to an organization instead of to your user account, specify the organization name and project name with `organization-name/project-name`. +1. Stage and commit all the files in your project ```shell - gh repo create project-name + git add . && git commit -m "initial commit" ``` -1. Follow the interactive prompts. Alternatively, you can specify arguments to skip these prompts. For more information about possible arguments, see [the {% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/gh_repo_create). -1. Pull changes from the new repository that you created. (If you created a `.gitignore` or `LICENSE` file in the previous step, this will pull those changes to your local directory.) +1. To create a repository for your project on GitHub, use the `gh repo create` subcommand. When prompted, select **Push an existing local repository to GitHub** and enter the desired name for your repository. If you want your project to belong to an organization instead of your user account, specify the organization name and project name with `organization-name/project-name`. + +1. Follow the interactive prompts. To add the remote and push the repository, confirm yes when asked to add the remote and push the commits to the current branch. - ```shell - git pull --set-upstream origin main - ``` - -1. Stage, commit, and push all of the files in your project. - - ```shell - git add . && git commit -m "initial commit" && git push - ``` +1. Alternatively, to skip all the prompts, supply the path to the repository with the `--source` flag and pass a visibility flag (`--public`, `--private`, or `--internal`). For example, `gh repo create --source=. --public`. Specify a remote with the `--remote` flag. To push your commits, pass the `--push` flag. For more information about possible arguments, see the [GitHub CLI manual](https://cli.github.com/manual/gh_repo_create). ## Adding a project to {% data variables.product.product_name %} without {% data variables.product.prodname_cli %} diff --git a/content/github/site-policy/github-terms-for-additional-products-and-features.md b/content/github/site-policy/github-terms-for-additional-products-and-features.md index 782c965da0..3fe119cf44 100644 --- a/content/github/site-policy/github-terms-for-additional-products-and-features.md +++ b/content/github/site-policy/github-terms-for-additional-products-and-features.md @@ -16,11 +16,11 @@ When you use GitHub, you may be given access to lots of additional products and By using the Additional Products and Features, you also agree to the applicable GitHub Terms for Additional Products and Features listed below. A violation of these GitHub terms for Additional Product and Features is a violation of the Agreement. Capitalized terms not defined here have the meaning given in the Agreement. **For Enterprise users** -- **GitHub Enterprise Cloud** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Codespaces, Dependabot Preview, Learning Lab, Octoshift, Packages and Pages. +- **GitHub Enterprise Cloud** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Codespaces, Dependabot Preview, GitHub Enterprise Importer, Learning Lab, Packages, and Pages. -- **GitHub Enterprise Server** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Connect, Dependabot Preview, Learning Lab, Octoshift, Packages, Pages and SQL Server Images. +- **GitHub Enterprise Server** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, Connect, Dependabot Preview, GitHub Enterprise Importer, Learning Lab, Packages, Pages, and SQL Server Images. -- **GitHub AE** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database,{% ifversion ghae-next %}Connect, {% endif %}Dependabot Preview, Octoshift, Packages and Pages. +- **GitHub AE** users may have access to the following Additional Products and Features: Actions, Advanced Security, Advisory Database, {% ifversion ghae-next %}Connect, {% endif %}Dependabot Preview, GitHub Enterprise Importer, Packages and Pages. ## Actions GitHub Actions enables you to create custom software development lifecycle workflows directly in your GitHub repository. Actions is billed on a usage basis. The [Actions documentation](/actions) includes details, including compute and storage quantities (depending on your Account plan), and how to monitor your Actions minutes usage and set usage limits. @@ -70,6 +70,9 @@ The generally available version of Codespaces is not currently available for U.S ## Connect With GitHub Connect, you can share certain features and data between your GitHub Enterprise Server {% ifversion ghae-next %}or GitHub AE {% endif %}instance and your GitHub Enterprise Cloud organization or enterprise account on GitHub.com. In order to enable GitHub Connect, you must have at least one (1) account on GitHub Enterprise Cloud or GitHub.com, and one (1) licensed instance of GitHub Enterprise Server{% ifversion ghae-next %} or GitHub AE{% endif %}. Your use of GitHub Enterprise Cloud or GitHub.com through Connect is governed by the terms under which you license GitHub Enterprise Cloud or GitHub.com. Use of Personal Data is governed by the [GitHub Privacy Statement](/github/site-policy/github-privacy-statement). +## GitHub Enterprise Importer +Importer is a framework for exporting data from other sources to be imported to the GitHub platform. Importer is provided “AS-IS”. + ## Learning Lab GitHub Learning Lab offers free interactive courses that are built into GitHub with instant automated feedback and help. @@ -86,9 +89,6 @@ Use of Personal Data is governed by the [GitHub Privacy Statement](/github/site- ## npm npm is a software package hosting service that allows you to host your software packages privately or publicly and use packages as dependencies in your projects. npm is the registry of record for the JavaScript ecosystem. The npm public registry is free to use but customers are billed if they want to publish private packages or manage private packages using teams. The [npm documentation](https://docs.npmjs.com/) includes details about the limitation of account types and how to manage [private packages](https://docs.npmjs.com/about-private-packages) and [organizations](https://docs.npmjs.com/organizations). Acceptable use of the npm registry is outlined in the [open-source terms](https://www.npmjs.com/policies/open-source-terms). There are supplementary terms for both the npm [solo](https://www.npmjs.com/policies/solo-plan) and [org](https://www.npmjs.com/policies/orgs-plan) plans. The npm [Terms of Use](https://www.npmjs.com/policies/terms) apply to your use of npm. -## Octoshift -Octoshift is a framework for exporting data from other sources to be imported to the GitHub platform. Octoshift is provided “AS-IS”. - ## Packages GitHub Packages is a software package hosting service that allows you to host your software packages privately or publicly and use packages as dependencies in your projects. GitHub Packages is billed on a usage basis. The [Packages documentation](/packages/learn-github-packages/introduction-to-github-packages) includes details, including bandwidth and storage quantities (depending on your Account plan), and how to monitor your Packages usage and set usage limits. Packages bandwidth usage is limited by the [GitHub Acceptable Use Polices](/github/site-policy/github-acceptable-use-policies). diff --git a/content/github/writing-on-github/working-with-advanced-formatting/index.md b/content/github/writing-on-github/working-with-advanced-formatting/index.md index c2e064cd17..48cb432198 100644 --- a/content/github/writing-on-github/working-with-advanced-formatting/index.md +++ b/content/github/writing-on-github/working-with-advanced-formatting/index.md @@ -10,6 +10,7 @@ versions: ghec: '*' children: - /organizing-information-with-tables + - /organizing-information-with-collapsed-sections - /creating-and-highlighting-code-blocks - /autolinked-references-and-urls - /attaching-files diff --git a/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md b/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md new file mode 100644 index 0000000000..88fc964d9f --- /dev/null +++ b/content/github/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md @@ -0,0 +1,42 @@ +--- +title: Organizing information with collapsed sections +intro: 'You can streamline your Markdown by creating a collapsed section with the `
    ` tag.' +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +shortTitle: Collapsed sections +--- +## Creating a collapsed section + +You can temporarily obscure sections of your Markdown by creating a collapsed section that the reader can choose to expand. For example, when you want to include technical details in an issue comment that may not be relevant or interesting to every reader, you can put those details in a collapsed section. + +Any Markdown within the `
    ` block will be collapsed until the reader clicks {% octicon "triangle-right" aria-label="The right triange icon" %} to expand the details. Within the `
    ` block, use the `` tag to create a label to the right of {% octicon "triangle-right" aria-label="The right triange icon" %}. + +```markdown +
    CLICK ME +

    + +#### We can hide anything, even code! + + ```ruby + puts "Hello World" + ``` + +

    +
    +``` + +The Markdown will be collapsed by default. + +![Rendered collapsed](/assets/images/help/writing/collapsed-section-view.png) + +After a reader clicks {% octicon "triangle-right" aria-label="The right triange icon" %}, the details are expanded. + +![Rendered open](/assets/images/help/writing/open-collapsed-section.png) + +## Further reading + +- [{% data variables.product.prodname_dotcom %} Flavored Markdown Spec](https://github.github.com/gfm/) +- "[Basic writing and formatting syntax](/articles/basic-writing-and-formatting-syntax)" diff --git a/content/graphql/guides/index.md b/content/graphql/guides/index.md index ab82bbddda..7311e5cf39 100644 --- a/content/graphql/guides/index.md +++ b/content/graphql/guides/index.md @@ -18,5 +18,6 @@ children: - /using-the-explorer - /managing-enterprise-accounts - /using-the-graphql-api-for-discussions + - /migrating-graphql-global-node-ids --- diff --git a/content/graphql/guides/migrating-graphql-global-node-ids.md b/content/graphql/guides/migrating-graphql-global-node-ids.md new file mode 100644 index 0000000000..7f22a366ab --- /dev/null +++ b/content/graphql/guides/migrating-graphql-global-node-ids.md @@ -0,0 +1,69 @@ +--- +title: Migrating GraphQL global node IDs +intro: 'Learn about the two global node ID formats and how to migrate from the legacy format to the new format.' +versions: + fpt: '*' + ghec: '*' +topics: + - API +shortTitle: Migrating global node IDs +--- + +## Background + +The {% data variables.product.product_name %} GraphQL API currently supports two types of global node ID formats. The legacy format will be deprecated and replaced with a new format. This guide shows you how to migrate to the new format, if necessary. + +By migrating to the new format, you ensure that the response times of your requests remain consistent and small. You also ensure that your application continues to work once the legacy IDs are fully deprecated. + +To learn more about why the legacy global node ID format will be deprecated, see "[New global ID format coming to GraphQL](https://github.blog/2021-02-10-new-global-id-format-coming-to-graphql)." + +## Determining if you need to take action + +You only need to follow the migration steps if you store references to GraphQL global node IDs. These IDs correspond to the `id` field for any object in the schema. If you don't store any global node IDs, then you can continue to interact with the API with no change. + +Additionally, if you currently decode the legacy IDs to extract type information (for example, if you use the first two characters of `PR_kwDOAHz1OX4uYAah` to determine if the object is a pull request), your service will break since the format of the IDs has changed. You should migrate your service to treat these IDs as opaque strings. These IDs will be unique, therefore you can rely on them directly as references. + + +## Migrating to the new global IDs + +To facilitate migration to the new ID format, you can use the `X-Github-Next-Global-ID` header in your GraphQL API requests. The value of the `X-Github-Next-Global-ID` header can be `1` or `0`. Setting the value to `1` will force the response payload to always use the new ID format for any object that you requested the `id` field for. Setting the value to `0` will revert to default behavior, which is to show the legacy ID or new ID depending on the object creation date. + +Here is an example request using cURL: + +``` +$ curl \ + -H "Authorization: token $GITHUB_TOKEN" \ + -H "X-Github-Next-Global-ID: 1" \ + https://api.github.com/graphql \ + -d '{ "query": "{ node(id: \"MDQ6VXNlcjM0MDczMDM=\") { id } }" }' +``` + +Even though the legacy ID `MDQ6VXNlcjM0MDczMDM=` was used in the query, the response will contain the new ID format: +``` +{"data":{"node":{"id":"U_kgDOADP9xw"}}} +``` +With the `X-Github-Next-Global-ID` header, you can find the new ID format for legacy IDs that you reference in your application. You can then update those references with the ID received in the response. You should update all references to legacy IDs and use the new ID format for any subsequent requests to the API. +To perform bulk operations, you can use aliases to submit multiple node queries in one API call. For more information, see "[the GraphQL docs](https://graphql.org/learn/queries/#aliases)." + +You can also get the new ID for a collection of items. For example, if you wanted to get the new ID for the last 10 repositories in your organization, you could use a query like this: +``` +{ + organization(login: "github") { + repositories(last: 10) { + edges { + cursor + node { + name + id + } + } + } + } +} +``` + +Note that setting `X-Github-Next-Global-ID` to `1` will affect the return value of every `id` field in your query. This means that even when you submit a non-`node` query, you will get back the new format ID if you requested the `id` field. + +## Sharing feedback + +If you have any concerns about the rollout of this change impacting your app, please [contact {% data variables.product.product_name %}](https://support.github.com/contact) and include information such as your app name so that we can better assist you. diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md index 69473e7868..5e52b05048 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization.md @@ -87,9 +87,9 @@ You can only choose an additional permission if it's not already included in the ### Security -- **Read {% data variables.product.prodname_code_scanning %} results** -- **Write {% data variables.product.prodname_code_scanning %} results** -- **Delete {% data variables.product.prodname_code_scanning %} results** +- **Read {% data variables.product.prodname_code_scanning %} results**: Provide users with read permissions for {% data variables.product.prodname_code_scanning %} alerts. +- **Write {% data variables.product.prodname_code_scanning %} results**: Provide users with write permissions for {% data variables.product.prodname_code_scanning %} alerts. +- **Delete {% data variables.product.prodname_code_scanning %} results**: Provide users with delete permissions for {% data variables.product.prodname_code_scanning %} alerts. ## Precedence for different levels of access diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md index 1f9212a18f..7e3a64f772 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md @@ -48,7 +48,7 @@ The steps to enable team synchronization depend on the IdP you want to use. Ther You must enable SAML single sign-on for your organization and your supported IdP. For more information, see "[Enforcing SAML single sign-on for your organization](/articles/enforcing-saml-single-sign-on-for-your-organization)." -You must authenticate to your organization using SAML SSO and the supported IdP. For more information, see "[Authenticating with SAML single sign-on](/articles/authenticating-with-saml-single-sign-on)." +You must have a linked SAML identity. To create a linked identity, you must authenticate to your organization using SAML SSO and the supported IdP at least once. For more information, see "[Authenticating with SAML single sign-on](/articles/authenticating-with-saml-single-sign-on)." ### Enabling team synchronization for Azure AD diff --git a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md index dda139688d..c2529a41aa 100644 --- a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md +++ b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md @@ -35,7 +35,7 @@ If a site administrator disables the merge conflict editor for pull requests bet {% tip %} - **Tip:** If the **Resolve conflicts** button is deactivated, your pull request's merge conflict is too complex to resolve on {% data variables.product.product_name %}{% ifversion ghes or ghae %} or the site administrator has disabled the conflict editor for pull requests between repositories{% endif %}. You must resolve the merge conflict using an alternative Git client, or by using Git on the command line. For more information see "[Resolving a merge conflict using the command line](/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line." + **Tip:** If the **Resolve conflicts** button is deactivated, your pull request's merge conflict is too complex to resolve on {% data variables.product.product_name %}{% ifversion ghes or ghae %} or the site administrator has disabled the conflict editor for pull requests between repositories{% endif %}. You must resolve the merge conflict using an alternative Git client, or by using Git on the command line. For more information see "[Resolving a merge conflict using the command line](/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line)." {% endtip %} {% data reusables.pull_requests.decide-how-to-resolve-competing-line-change-merge-conflict %} diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md b/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md index db82d0a005..b36d6296c0 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches.md @@ -87,11 +87,7 @@ Before you can enable required status checks, you must configure the repository After enabling required status checks, all required status checks must pass before collaborators can merge changes into the protected branch. After all required status checks pass, any commits must either be pushed to another branch and then merged or pushed directly to the protected branch. -{% note %} - -**Note:** Any person or integration with write permissions to a repository can set the state of any status check in the repository. {% data variables.product.company_short %} does not verify that the author of a check is authorized to create a check with a certain name or modify an existing status. Before merging a pull request, you should verify that the author of each status, listed in the merge box, is expected. - -{% endnote %} +Any person or integration with write permissions to a repository can set the state of any status check in the repository, but in some cases you may only want to accept a status check from a specific {% data variables.product.prodname_github_app %}. When you add a required status check, you can select an app that has recently set this check as the expected source of status updates. If the status is set by any other person or integration, merging won't be allowed. If you select "any source", you can still manually verify the author of each status, listed in the merge box. You can set up required status checks to either be "loose" or "strict." The type of required status check you choose determines whether your branch is required to be up to date with the base branch before merging. diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md b/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md index 4fce6f70c9..ea779e9ec2 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule.md @@ -69,13 +69,13 @@ When you create a branch rule, the branch you specify doesn't have to exist yet ![Require review from code owners](/assets/images/help/repository/PR-review-required-code-owner.png) - Optionally, if the repository is part of an organization, select **Restrict who can dismiss pull request reviews**. Then, search for and select the people or teams who are allowed to dismiss pull request reviews. For more information, see "[Dismissing a pull request review](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)." ![Restrict who can dismiss pull request reviews checkbox](/assets/images/help/repository/PR-review-required-dismissals.png) -1. Optionally, enable required status checks. +1. Optionally, enable required status checks. For more information, see "[About status checks](/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)." - Select **Require status checks to pass before merging**. ![Required status checks option](/assets/images/help/repository/required-status-checks.png) - Optionally, to ensure that pull requests are tested with the latest code on the protected branch, select **Require branches to be up to date before merging**. ![Loose or strict required status checkbox](/assets/images/help/repository/protecting-branch-loose-status.png) - - From the list of available status checks, select the checks you want to require. - ![List of available status checks](/assets/images/help/repository/required-statuses-list.png) + - Search for status checks, selecting the checks you want to require. + ![Search interface for available status checks, with list of required checks](/assets/images/help/repository/required-statuses-list.png) {%- ifversion fpt or ghes > 3.1 or ghae-issue-4382 %} 1. Optionally, select **Require conversation resolution before merging**. ![Require conversation resolution before merging option](/assets/images/help/repository/require-conversation-resolution.png) diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md b/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md index 6cb570c640..671b0e2809 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks.md @@ -42,3 +42,9 @@ Sometimes, the results of the status checks for the test merge commit and head c ![Branch with conflicting merge commits](/assets/images/help/repository/req-status-check-conflicting-merge-commits.png) {% endif %} + +It's also possible for a protected branch to require a status check from a specific {% data variables.product.prodname_github_app %}. If you see a message similar to the following, then you should verify that the check listed in the merge box was set by the expected app. + +``` +Required status check "build" was not set by the expected {% data variables.product.prodname_github_app %}. +``` diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md index e0a56d66e5..be05049a7c 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md @@ -124,10 +124,6 @@ Repository owners can add branch protection rules to ensure that changed code is # In this example, any change inside the `/apps` directory # will require approval from a member of the @example-org/content team. -# If a member of @example-org/content opens a pull request -# with a change inside the `/apps` directory, their approval is implicit. -# The team is still added as a reviewer but not a required reviewer. -# Anyone can approve the changes. /apps/ @example-org/content-team ``` diff --git a/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md b/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md index 97a16747e5..64552f13ed 100644 --- a/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md +++ b/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md @@ -50,20 +50,30 @@ Automatically generated release notes provide an automated alternative to manual ![Publish release and Draft release buttons](/assets/images/help/releases/release_buttons.png) -## Creating a template for automatically generated release notes +## Configuring automatically generated release notes {% data reusables.repositories.navigate-to-repo %} {% data reusables.files.add-file %} 3. In the file name field, type `.github/release.yml` to create the `release.yml` file in the `.github` directory. ![Create new file](/assets/images/help/releases/release-yml.png) -4. In the file, specify the pull request labels and authors you want to exclude from this release. You can also create new categories and list the pull request labels to be included in each of them. For more information, see "[Managing labels](/issues/using-labels-and-milestones-to-track-work/managing-labels)." +4. In the file, using the configuration options below, specify in YAML the pull request labels and authors you want to exclude from this release. You can also create new categories and list the pull request labels to be included in each of them. -## Example configuration +### Configuration options + +| Parameter | Description | +| :- | :- | +| `changelog.exclude.labels` | A list of labels that exclude a pull request from appearing in release notes. | +| `changelog.exclude.authors` | A list of user or bot login handles whose pull requests are to be excluded from release notes. | +| `changelog.categories[*].title` | **Required.** The title of a category of changes in release notes. | +| `changelog.categories[*].labels`| **Required.** Labels that qualify a pull request for this category. Use `*` as a catch-all for pull requests that didn't match any of the previous categories. | +| `changelog.categories[*].exclude.labels` | A list of labels that exclude a pull request from appearing in this category. | +| `changelog.categories[*].exclude.authors` | A list of user or bot login handles whose pull requests are to be excluded from this category. | + +### Example configuration {% raw %} -**release.yml** ```yaml{:copy} -# release.yml +# .github/release.yml changelog: exclude: @@ -86,14 +96,6 @@ changelog: ``` {% endraw %} -## Release template syntax +## Further reading -| Parameter | Description |Required | Value | -| :- | :- | :- | :- | -|`changelog` | Defines the contents within it as the custom template for your release notes.|Required. | No value accepted.| -|`exclude`| Creates a category of pull requests to be excluded from the release. Can be set at the top-level of the changelog to apply to all categories or applied on a per-category basis. |Optional | No value accepted.| -|`authors`| Specifies authors to be excluded from the release.| Optional for `exclude` category.| Accepts usernames and bots as values.| -|`categories`| Defines the nested contents as custom categories to be included in the template. |Optional | No value accepted.| -|`title`| Creates an individual category. |Required if `categories` parameter exists.| Takes the category name as its value. | -|`labels`| Specifies labels to be used by the enclosing category.| Required if `categories` parameter exists, optional for `exclude` parameter.| Accepts any labels, whether currently existing or planned for the future.| -|`"*"`| Catchall for any pull request not included within a category *above*. If used, it must be added at the end of the file. | Optional| No value accepted. | +- "[Managing labels](/issues/using-labels-and-milestones-to-track-work/managing-labels)" \ No newline at end of file diff --git a/content/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax.md b/content/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax.md index 34acd6390f..0df535b263 100644 --- a/content/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax.md +++ b/content/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax.md @@ -74,8 +74,7 @@ Another way you can narrow down search results is to exclude certain subsets. Yo Query | Example ------------- | ------------- --QUALIFIER | **[cats stars:>10 -language:javascript](https://github.com/search?q=cats+stars%3A>10+-language%3Ajavascript&type=Repositories)** matches repositories with the word "cats" that have more than 10 stars but are not written in JavaScript. - | **[mentions:defunkt -org:github](https://github.com/search?utf8=%E2%9C%93&q=mentions%3Adefunkt+-org%3Agithub&type=Issues)** matches issues mentioning @defunkt that are not in repositories in the GitHub organization +-QUALIFIER | **[mentions:defunkt -org:github](https://github.com/search?utf8=%E2%9C%93&q=mentions%3Adefunkt+-org%3Agithub&type=Issues)** matches issues mentioning @defunkt that are not in repositories in the GitHub organization. ## Use quotation marks for queries with whitespace diff --git a/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md b/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md index 7e97fa779f..857ea9e9b3 100644 --- a/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md +++ b/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md @@ -18,6 +18,30 @@ shortTitle: View sponsors & sponsorships You can view analytics on your current and past sponsorships, the payments you've received from sponsors, and events, such as cancellations and sponsor tier changes for your sponsorships. You can also view activity such as new sponsorships, changes to sponsorships, and canceled sponsorships. You can filter the list of activities by date. You can also export sponsorship data for the account you're viewing in CSV or JSON format. +## About transaction metadata + +To track where your sponsorships are coming from, you can use custom URLs with metadata for your {% data variables.product.prodname_sponsors %} profile or checkout page. The metadata will be included in your transaction export in the metadata column. For more information about exporting transaction data, see "[Exporting your sponsorship data](#exporting-your-sponsorship-data)." + +Metadata must use the `key=value` format and can be added to the end of these URLs. + +- Sponsored account profile: `https://github.com/sponsors/{account}` +- Sponsorship checkout: `https://github.com/sponsors/{account}/sponsorships` + +The metadata will persist in the URL as a potential sponsor switches accounts to sponsor with, selects monthly or one-time payments, and chooses a different tier. + +### Syntax requirements + +Your metadata must meet the following requirements, which do not apply to any other URL parameters that are passed. + +- Keys must be prefixed by `metadata_`, such as `metadata_campaign`. In your transaction export, the `metadata_` prefix will be removed from the key. +- Keys and values must only contain alphanumeric values, dashes, or underscores. If non-accepted characters are passed in either keys or values, a 404 error will be presented. +- Whitespaces are not allowed. +- A maximum of **10** key-value pairs are accepted per request. If more are passed, only the first 10 will be saved. +- A maximum of **25** characters per key are accepted. If more than that are passed, only the first 25 will be saved. +- A maximum of **100** characters per value are accepted. If more than that are passed, only the first 100 will be saved. + +For example, you can use `https://github.com/sponsors/{account}?metadata_campaign=myblog` to track sponsorships that originate from your blog. `metadata_campaign` is the key and `myblog` is the value. In the metadata column of your transaction export, the key will be listed as `campaign`. + ## Viewing your sponsors and sponsorships {% data reusables.sponsors.navigate-to-sponsors-dashboard %} diff --git a/data/features/keyboard-shortcut-accessibility-setting.yml b/data/features/keyboard-shortcut-accessibility-setting.yml new file mode 100644 index 0000000000..f5ac118b98 --- /dev/null +++ b/data/features/keyboard-shortcut-accessibility-setting.yml @@ -0,0 +1,7 @@ +# Reference: #4999. +# Documentation for the security manager org-level role +versions: + fpt: '*' + ghes: '>=3.4' + ghae: 'ghae-issue-5430' + ghec: '*' diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index c46e071823..fc6b65fefa 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -21460,6 +21460,11 @@ type Organization implements Actor & MemberStatusable & Node & ProfileOwner & Pr Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ @@ -26690,6 +26695,11 @@ type Query { Lookup a given repository by the owner and repository name. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ The name of the repository """ @@ -32798,6 +32808,11 @@ interface RepositoryOwner { Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ @@ -40580,6 +40595,11 @@ type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryDisc Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index 2c68121713..ecbc028b77 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -23303,6 +23303,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ @@ -26181,7 +26186,7 @@ type ProjectEdge { } """ -New projects that manage issues, pull requests and drafts with tables and. +New projects that manage issues, pull requests and drafts using tables and boards. """ type ProjectNext implements Closable & Node & Updatable { """ @@ -26418,7 +26423,7 @@ type ProjectNextFieldEdge { } """ -An item in a Memex project. +An item within a new Project. """ type ProjectNextItem implements Node { """ @@ -26529,7 +26534,7 @@ type ProjectNextItemEdge { } """ -An value of a field in an item of Memex project. +An value of a field in an item of a new Project. """ type ProjectNextItemFieldValue implements Node { """ @@ -29873,6 +29878,11 @@ type Query { Lookup a given repository by the owner and repository name. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ The name of the repository """ @@ -36384,6 +36394,11 @@ interface RepositoryOwner { Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ @@ -45888,6 +45903,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index 2c68121713..ecbc028b77 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -23303,6 +23303,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ @@ -26181,7 +26186,7 @@ type ProjectEdge { } """ -New projects that manage issues, pull requests and drafts with tables and. +New projects that manage issues, pull requests and drafts using tables and boards. """ type ProjectNext implements Closable & Node & Updatable { """ @@ -26418,7 +26423,7 @@ type ProjectNextFieldEdge { } """ -An item in a Memex project. +An item within a new Project. """ type ProjectNextItem implements Node { """ @@ -26529,7 +26534,7 @@ type ProjectNextItemEdge { } """ -An value of a field in an item of Memex project. +An value of a field in an item of a new Project. """ type ProjectNextItemFieldValue implements Node { """ @@ -29873,6 +29878,11 @@ type Query { Lookup a given repository by the owner and repository name. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ The name of the repository """ @@ -36384,6 +36394,11 @@ interface RepositoryOwner { Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ @@ -45888,6 +45903,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectNextOwn Find Repository. """ repository( + """ + Follow repository renames. If disabled, a repository referenced by its old name will return an error. + """ + followRenames: Boolean = true + """ Name of Repository to find. """ diff --git a/data/release-notes/enterprise-server/3-3/0-rc1.yml b/data/release-notes/enterprise-server/3-3/0-rc1.yml index 8ba9912d9b..2b4ca6f83e 100644 --- a/data/release-notes/enterprise-server/3-3/0-rc1.yml +++ b/data/release-notes/enterprise-server/3-3/0-rc1.yml @@ -54,7 +54,7 @@ sections: - '{% data variables.product.prodname_ghe_server %} 3.3 includes improvements to the maintenance of repositories, especially for repositories that contain many unreachable objects. Note that the first maintenance cycle after upgrading to {% data variables.product.prodname_ghe_server %} 3.3 may take longer than usual to complete.' # https://github.com/github/releases/issues/1533 - - '{% data variables.product.prodname_ghe_server %} 3.3 includes a repository cache for geographically-distributed teams and CI infrastructure. The repository cache keeps a read-only copy of your repositories available in additional geographies, which prevents clients from downloading duplicate Git content from your primary instance. For more information, see "[About repository caching](/admin/enterprise-management/caching-repositories/about-repository-caching)."' + - '{% data variables.product.prodname_ghe_server %} 3.3 includes the public beta of a repository cache for geographically-distributed teams and CI infrastructure. The repository cache keeps a read-only copy of your repositories available in additional geographies, which prevents clients from downloading duplicate Git content from your primary instance. For more information, see "[About repository caching](/admin/enterprise-management/caching-repositories/about-repository-caching)."' # https://github.com/github/releases/issues/1616 - '{% data variables.product.prodname_ghe_server %} 3.3 includes improvements to the user impersonation process. An impersonation session now requires a justification for the impersonation, actions are recorded in the audit log as being performed as an impersonated user, and the user who is impersonated will receive an email notification that they have been impersonated by an enterprise administrator. For more information, see "[Impersonating a user](/enterprise-server@3.3/admin/user-management/managing-users-in-your-enterprise/impersonating-a-user)."' @@ -228,6 +228,11 @@ sections: # https://github.com/github/releases/issues/1665 - When a new tag is created, the [push](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push) webhook payload now always includes a `head_commit` object that contains the data of the commit that the new tag points to. As a result, the `head_commit` object will always contain the commit data of the payload's `after` commit. + - heading: 'Performance Changes' + notes: + # https://github.com/github/releases/issues/1823 + - Page loads and jobs are now significantly faster for repositories with many Git refs. + # No security/bug fixes for the RC release # security_fixes: # - PLACEHOLDER diff --git a/data/reusables/command-palette/change-scope.md b/data/reusables/command-palette/change-scope.md index f3e1e48248..4cf46c21a4 100644 --- a/data/reusables/command-palette/change-scope.md +++ b/data/reusables/command-palette/change-scope.md @@ -2,4 +2,4 @@ - To narrow the scope within a user or organization account, highlight a repository then use Tab to add it to the scope. - To expand the scope, highlight and remove an item in the scope using the Backspace or delete key. - - To clear the scope and text box, click **Clear**. + - To clear the scope and text box, click **Clear** or use CtrlBackspace (Windows and Linux) or Backspace (Mac). diff --git a/data/reusables/enterprise-accounts/vss-ghe-description.md b/data/reusables/enterprise-accounts/vss-ghe-description.md new file mode 100644 index 0000000000..d6b12ba99c --- /dev/null +++ b/data/reusables/enterprise-accounts/vss-ghe-description.md @@ -0,0 +1 @@ +{% data variables.product.prodname_vss_ghe %} is a combined offering from Microsoft that allows a subscriber to use both {% data variables.product.prodname_vs %} and {% data variables.product.prodname_enterprise %}. diff --git a/data/reusables/github-actions/supported-github-runners.md b/data/reusables/github-actions/supported-github-runners.md index 02c8761e10..a3b68d9708 100644 --- a/data/reusables/github-actions/supported-github-runners.md +++ b/data/reusables/github-actions/supported-github-runners.md @@ -9,7 +9,7 @@ -Windows Server 2022[beta] +Windows Server 2022 windows-2022 diff --git a/data/reusables/organizations/moderation-settings.md b/data/reusables/organizations/moderation-settings.md new file mode 100644 index 0000000000..854bb1828c --- /dev/null +++ b/data/reusables/organizations/moderation-settings.md @@ -0,0 +1,2 @@ +1. In the left sidebar, click **Moderation settings**. +![Moderation settings in organization's settings](/assets/images/help/organizations/org-settings-moderation-settings.png) diff --git a/data/reusables/saml/authorized-creds-info.md b/data/reusables/saml/authorized-creds-info.md new file mode 100644 index 0000000000..250bab14ea --- /dev/null +++ b/data/reusables/saml/authorized-creds-info.md @@ -0,0 +1,6 @@ +Before you can authorize a personal access token or SSH key, you must have a linked SAML identity. If you're a member of an organization where SAML SSO is enabled, you can create a linked identity by authenticating to your organization with your IdP at least once. For more information, see "[About authentication with SAML single sign-on](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on)." + +After you authorize a personal access token or SSH key, the authorization does not expire. The token or key will stay authorized until revoked in one of these ways. +- An organization owner revokes the authorization. +- You are removed from the organization. +- The scopes in a personal access token are edited, or the token is regenerated. \ No newline at end of file diff --git a/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/data/reusables/secret-scanning/partner-secret-list-private-repo.md index aa481ab424..148734d46e 100644 --- a/data/reusables/secret-scanning/partner-secret-list-private-repo.md +++ b/data/reusables/secret-scanning/partner-secret-list-private-repo.md @@ -211,3 +211,9 @@ Twilio | Twilio Account String Identifier | twilio_account_sid Twilio | Twilio API Key | twilio_api_key {%- ifversion fpt or ghec or ghes > 3.3 %} Typeform | Typeform Personal Access Token | typeform_personal_access_token{% endif %} +{%- ifversion fpt or ghec or ghes > 3.3 %} +Yandex | Yandex.Cloud API Key | yandex_cloud_api_key{% endif %} +{%- ifversion fpt or ghec or ghes > 3.3 %} +Yandex | Yandex.Cloud IAM Cookie | yandex_cloud_iam_cookie{% endif %} +{%- ifversion fpt or ghec or ghes > 3.3 %} +Yandex | Yandex.Cloud IAM Token | yandex_cloud_iam_token{% endif %} diff --git a/data/reusables/user_settings/accessibility_settings.md b/data/reusables/user_settings/accessibility_settings.md new file mode 100644 index 0000000000..073c3c1456 --- /dev/null +++ b/data/reusables/user_settings/accessibility_settings.md @@ -0,0 +1,2 @@ +1. In the navigation on the left hand side, click the **Accessibility** link. +![Screenshot of the user settings navigation. The Accessibility link is highlighted.](/assets/images/help/settings/accessibility-tab.png) diff --git a/data/reusables/webhooks/workflow_job_properties.md b/data/reusables/webhooks/workflow_job_properties.md index dcaada9661..80114a58b6 100644 --- a/data/reusables/webhooks/workflow_job_properties.md +++ b/data/reusables/webhooks/workflow_job_properties.md @@ -2,3 +2,9 @@ Key | Type | Description ----|------|------------- `action`|`string` | The action performed. Can be one of:
    • `queued` - A new job was created.
    • `in_progress` - The job has started processing on the runner.
    • `completed` - The `status` of the job is `completed`.
    `workflow_job`|`object`| The workflow job. Many `workflow_job` keys, such as `head_sha`, `conclusion`, and `started_at` are the same as those in a [`check_run`](#check_run) object. +`workflow_job[status]`|`string`| The current status of the job. Can be `queued`, `in_progress`, or `completed`. +`workflow_job[labels]`|`array`| Custom labels for the job. Specified by the [`"runs-on"` attribute](/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on) in the workflow YAML. +`workflow_job[runner_id]`|`integer`| The ID of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`. +`workflow_job[runner_name]`|`string`| The name of the runner that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`. +`workflow_job[runner_group_id]`|`integer`| The ID of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`. +`workflow_job[runner_group_name]`|`string`| The name of the runner group that is running this job. This will be `null` as long as `workflow_job[status]` is `queued`. diff --git a/data/variables/product.yml b/data/variables/product.yml index 7cbb648eab..bd2bec05b8 100644 --- a/data/variables/product.yml +++ b/data/variables/product.yml @@ -172,7 +172,7 @@ prodname_codeql_workflow: 'CodeQL analysis workflow' # Visual Studio prodname_vs: 'Visual Studio' prodname_vscode: 'Visual Studio Code' -prodname_vss_ghe: 'Visual Studio subscription with GitHub Enterprise' +prodname_vss_ghe: 'Visual Studio subscriptions with GitHub Enterprise' prodname_vss_admin_portal_with_url: 'the [administrator portal for Visual Studio subscriptions](https://visualstudio.microsoft.com/subscriptions-administration/)' prodname_vscode_command_palette: 'VS Code Command Palette' diff --git a/lib/enterprise-dates.json b/lib/enterprise-dates.json index 03a2c22af5..605d83cb3d 100644 --- a/lib/enterprise-dates.json +++ b/lib/enterprise-dates.json @@ -108,15 +108,15 @@ "deprecationDate": "2022-12-07" }, "3.4": { - "releaseDate": "2022-02-08", - "deprecationDate": "2023-03-08" + "releaseDate": "2022-02-15", + "deprecationDate": "2023-03-15" }, "3.5": { - "releaseDate": "2022-04-26", - "deprecationDate": "2023-05-24" + "releaseDate": "2022-05-03", + "deprecationDate": "2023-05-31" }, "3.6": { - "releaseDate": "2022-07-12", - "deprecationDate": "2023-08-09" + "releaseDate": "2022-07-19", + "deprecationDate": "2023-08-16" } } \ No newline at end of file diff --git a/lib/excluded-links.js b/lib/excluded-links.js index f9fb697f4a..88bf7ca0c4 100644 --- a/lib/excluded-links.js +++ b/lib/excluded-links.js @@ -19,4 +19,5 @@ export default [ 'https://en.liberapay.com/', 'https://nbviewer.jupyter.org/github/bokeh/bokeh-notebooks/blob/main/tutorial/06%20-%20Linking%20and%20Interactions.ipynb', 'https://www.vmware.com/products/esxi-and-esx.html', + 'https://www.ecfr.gov/cgi-bin/text-idx?SID=ad384e1f1e017076f8c0136f322f0a4c&mc=true&node=pt15.2.744&rgn=div5' ] diff --git a/lib/failbot.js b/lib/failbot.js index 228683c95d..e63d344f69 100644 --- a/lib/failbot.js +++ b/lib/failbot.js @@ -1,109 +1,59 @@ -import fetch from 'node-fetch' +import got from 'got' +import { Failbot, HTTPBackend } from '@github/failbot' -export default class FailBot { - constructor({ app, haystackURL, headers }) { - this.app = app - this.haystackURL = haystackURL - this.headers = headers +const HAYSTACK_APP = 'docs' - // Since we're using `node-fetch` we can't rely on it deconstructing the - // basic authentication credentials from the URL (e.g. - // https://user:pass@failbotdomain/path) because `node-fetch` will always - // strip it. See https://github.com/node-fetch/node-fetch/issues/1330 - // and it's not a bug. - // The correct thing is to extract it manually and add an `Authorization` - // header based on it from the URL. - const url = new URL(this.haystackURL) - const { username, password } = url - if (username || password) { - this.headers.Authorization = `Basic ${Buffer.from(`${username}:${password}`).toString( - 'base64' - )}` - } else { - console.warn(`The haystack URL does not contain authentication credentials`) - } - } - - /** - * Report an error to Sentry - * @param {Error} error - * @param {any} metadata - * @param {any} [headers] - */ - static async report(error, metadata, headers = {}) { - // If there's no HAYSTACK_URL set, bail early - if (!process.env.HAYSTACK_URL) return - - const failbot = new FailBot({ - app: 'docs', - haystackURL: process.env.HAYSTACK_URL, - headers, - }) - - return failbot.sendException(error, metadata) - } - - /** - * Create a rollup of this error by generating a base64 representation - * @param {Error} error - */ - createRollup(error) { - const stackLine = error.stack && error.stack.split('\n')[1] - const str = `${error.name}:${stackLine}`.replace(/=/g, '') - return Buffer.from(str).toString('base64') - } - - /** - * Format the error to a plain JSON object with additional data - * @param {Error} error - * @param {any} metadata - */ - formatJSON(error, metadata) { - return Object.assign({}, metadata, { - /* eslint-disable camelcase */ - created_at: new Date().toISOString(), - rollup: this.createRollup(error), - class: error.name, - message: error.message, - backtrace: error.stack || '', - js_environment: `Node.js ${process.version}`, - /* eslint-enable camelcase */ - }) - } - - /** - * Populate default context from settings. Since settings commonly comes from - * ENV, this allows setting defaults for the context via the environment. - */ - getFailbotContext() { - const failbotKeys = {} - - for (const key in process.env) { - if (key.startsWith('FAILBOT_CONTEXT_')) { - const formattedKey = key.replace(/^FAILBOT_CONTEXT_/, '').toLowerCase() - failbotKeys[formattedKey] = process.env[key] - } - } - - return failbotKeys - } - - /** - * Send the error to Sentry - * @param {Error} error - * @param {any} metadata - */ - async sendException(error, metadata = {}) { - const data = Object.assign({ app: this.app }, this.getFailbotContext(), metadata) - const body = this.formatJSON(error, Object.assign({ app: this.app }, data)) - - return fetch(this.haystackURL, { - method: 'POST', - body: JSON.stringify(body), - headers: { - ...this.headers, - 'Content-Type': 'application/json', +async function retryingGot(url, args) { + return got( + url, + Object.assign({}, args, { + // With the timeout at 3000 (milliseconds) and the retry.limit + // at 4 (times), the total worst-case is: + // 3000 * 4 + 1000 + 2000 + 3000 + 4000 + 8000 = 30 seconds + timeout: 3000, + retry: { + // This means it will wait... + // 1. 1000ms + // 2. 2000ms + // 3. 4000ms + // 4. 8000ms + // 5. give up! + // + // From the documentation: + // + // Delays between retries counts with function + // 1000 * Math.pow(2, retry - 1) + Math.random() * 100, + // where retry is attempt number (starts from 1). + // + limit: 4, }, }) - } + ) +} + +export async function report(error, metadata) { + // If there's no HAYSTACK_URL set, bail early + if (!process.env.HAYSTACK_URL) return + + const backends = [ + new HTTPBackend({ + haystackURL: process.env.HAYSTACK_URL, + fetchFn: retryingGot, + }), + ] + const failbot = new Failbot({ + app: HAYSTACK_APP, + backends: backends, + }) + return failbot.report(error, metadata) +} + +// Kept for legacy so you can continue to do: +// +// import FailBot from './lib/failbot.js' +// ... +// FailBot.report(myError) +// +export default { + report, } diff --git a/lib/get-mini-toc-items.js b/lib/get-mini-toc-items.js index dd17bd8cd8..c953f16f40 100644 --- a/lib/get-mini-toc-items.js +++ b/lib/get-mini-toc-items.js @@ -12,7 +12,7 @@ export default function getMiniTocItems(html, maxHeadingLevel = 2, headingScope // return an array of objects containing each heading's contents, level, and optional platform. // Article layout uses these as follows: - // - `contents` to render the mini TOC headings + // - `title` and `link` to render the mini TOC headings // - `headingLevel` the `2` in `h2`; used for determining required indentation // - `platform` to show or hide platform-specific headings via client JS diff --git a/lib/graphql/static/changelog.json b/lib/graphql/static/changelog.json index d2e1dd3d0c..077b81142e 100644 --- a/lib/graphql/static/changelog.json +++ b/lib/graphql/static/changelog.json @@ -1,4 +1,20 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "Argument `followRenames: Boolean` added to field `Organization.repository`", + "Argument `followRenames: Boolean` added to field `Query.repository`", + "Argument `followRenames: Boolean` added to field `RepositoryOwner.repository`", + "Argument `followRenames: Boolean` added to field `User.repository`" + ] + } + ], + "previewChanges": [], + "upcomingChanges": [], + "date": "2021-11-16" + }, { "schemaChanges": [ { diff --git a/lib/graphql/static/prerendered-objects.json b/lib/graphql/static/prerendered-objects.json index 6ae5b86661..fd23dcfb49 100644 --- a/lib/graphql/static/prerendered-objects.json +++ b/lib/graphql/static/prerendered-objects.json @@ -1,6 +1,6 @@ { "dotcom": { - "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nApp

    \n

    A GitHub App.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    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 \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \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

    reason (String)

    The reason auto-merge was disabled.

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

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

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

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \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 \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

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

    Fields

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

    authorEmail (String)

    The email address of the author of this auto-merge request.

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

    commitBody (String)

    The commit message of the auto-merge request.

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

    commitHeadline (String)

    The commit title of the auto-merge request.

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

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

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

    enabledBy (Actor)

    The actor who created the auto-merge request.

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

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

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

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

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

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \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 \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \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 \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBlame

    \n

    Represents a Git blame.

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

    Fields

    \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 \nBlameRange

    \n

    Represents a range of information from a Git blame.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nBlob

    \n

    Represents a Git blob.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBot

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBranchProtectionRule

    \n

    A branch protection rule.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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 \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

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

    Fields

    \n \n\n\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 \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCVSS

    \n

    The Common Vulnerability Scoring System.

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

    Fields

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

    score (Float!)

    The CVSS score associated with this advisory.

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

    vectorString (String)

    The CVSS vector string associated with this advisory.

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

    \n \n \nCWE

    \n

    A common weakness enumeration.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    cweId (String!)

    The id of the CWE.

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

    description (String!)

    A detailed description of this CWE.

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

    name (String!)

    The name of this CWE.

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

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([CWEEdge])

    A list of edges.

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

    nodes ([CWE])

    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 \nCWEEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (CWE)

    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 \nCheckAnnotation

    \n

    A single check annotation.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckAnnotationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

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

    Fields

    \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 \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

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

    Fields

    \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 \nCheckRun

    \n

    A check run.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

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

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in 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

    steps (CheckStepConnection)

    The check run's steps.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \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 \nCheckRunConnection

    \n

    The connection type for CheckRun.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckRunEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCheckStep

    \n

    A single check step.

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

    Fields

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

    completedAt (DateTime)

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

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

    conclusion (CheckConclusionState)

    The conclusion of the check step.

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

    externalId (String)

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

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

    name (String!)

    The step's name.

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

    number (Int!)

    The index of the step in the list of steps of the parent check run.

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

    secondsToCompletion (Int)

    Number of seconds to completion.

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

    startedAt (DateTime)

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

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

    status (CheckStatusState!)

    The current status of the check step.

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

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([CheckStepEdge])

    A list of edges.

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

    nodes ([CheckStep])

    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 \nCheckStepEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (CheckStep)

    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 \nCheckSuite

    \n

    A check suite.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    creator (User)

    The user who triggered the check suite.

    \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

    workflowRun (WorkflowRun)

    The workflow run associated with 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 \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckSuiteEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommit

    \n

    Represents a Git commit.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 committed via GitHub web UI.

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

    committer (GitActor)

    Committer 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 \nCommitComment

    \n

    Represents a comment on a given Commit.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCommitCommentConnection

    \n

    The connection type for CommitComment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitCommentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCommitCommentThread

    \n

    A thread of comments on a commit.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommitConnection

    \n

    The connection type for Commit.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCommitHistoryConnection

    \n

    The connection type for Commit.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContentAttachment

    \n

    A content attachment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nContentReference

    \n

    A content reference.

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

    Fields

    \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 \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContributionCalendarDay

    \n

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

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \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 \nContributionCalendarMonth

    \n

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

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nContributionCalendarWeek

    \n

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

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

    Fields

    \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 \nContributionsCollection

    \n

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

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContribution

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCreatedIssueContribution

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCreatedPullRequestContribution

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCreatedPullRequestReviewContribution

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCreatedRepositoryContribution

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCrossReferencedEvent

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependency

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \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 name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \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 \nDependencyGraphDependencyConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependencyEdge

    \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

    Fields

    \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 \nDependencyGraphManifest

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDependencyGraphManifestConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphManifestEdge

    \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

    Fields

    \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 \nDeployKey

    \n

    A repository deploy key.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDeployKeyConnection

    \n

    The connection type for DeployKey.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKeyEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeployment

    \n

    Represents triggered deployment instance.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentConnection

    \n

    The connection type for Deployment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentProtectionRule

    \n

    A protection rule.

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

    Fields

    \n \n\n\n \n \n\n\n\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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    timeout (Int!)

    The timeout in minutes for this protection rule.

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

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

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

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentProtectionRuleEdge])

    A list of edges.

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

    nodes ([DeploymentProtectionRule])

    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 \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (DeploymentProtectionRule)

    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 \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

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

    Fields

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

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

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

    environment (Environment!)

    The target environment of the deployment.

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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

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

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

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

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentRequestEdge])

    A list of edges.

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

    nodes ([DeploymentRequest])

    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 \nDeploymentRequestEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (DeploymentRequest)

    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 \nDeploymentReview

    \n

    A deployment review.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    comment (String!)

    The comment the user left.

    \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

    environments (EnvironmentConnection!)

    The environments approved or rejected.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DeploymentReviewState!)

    The decision of the user.

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

    user (User!)

    The user that reviewed the deployment.

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

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewEdge])

    A list of edges.

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

    nodes ([DeploymentReview])

    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 \nDeploymentReviewEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (DeploymentReview)

    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 \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewerEdge])

    A list of edges.

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

    nodes ([DeploymentReviewer])

    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 \nDeploymentReviewerEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (DeploymentReviewer)

    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 \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentStatusEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDiscussion

    \n

    A discussion in a repository.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

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

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

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

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\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!)

    The main text of the discussion post.

    \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

    category (DiscussionCategory!)

    The category for this discussion.

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

    comments (DiscussionCommentConnection!)

    The replies to the 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

    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

    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

    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

    number (Int!)

    The number identifying this discussion within the repository.

    \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 path for this discussion.

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

    title (String!)

    The title of this 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

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

    url (URI!)

    The 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

    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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \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 \nDiscussionCategory

    \n

    A category for discussions in a repository.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    description (String)

    A description of this category.

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

    emoji (String!)

    An emoji representing this category.

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

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

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

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

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

    name (String!)

    The name of this category.

    \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

    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 \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCategoryEdge])

    A list of edges.

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

    nodes ([DiscussionCategory])

    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 \nDiscussionCategoryEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (DiscussionCategory)

    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 \nDiscussionComment

    \n

    A comment on a discussion.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

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

    discussion (Discussion)

    The discussion this comment was created in.

    \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

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \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

    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

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

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

    resourcePath (URI!)

    The path for this discussion 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

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

    url (URI!)

    The URL for this discussion 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

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \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

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

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

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCommentEdge])

    A list of edges.

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

    nodes ([DiscussionComment])

    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 \nDiscussionCommentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (DiscussionComment)

    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 \nDiscussionConnection

    \n

    The connection type for Discussion.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionEdge])

    A list of edges.

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

    nodes ([Discussion])

    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 \nDiscussionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (Discussion)

    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 \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

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

    Fields

    \n \n\n\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 \nEnterpriseAdministratorInvitation

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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 \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

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

    Fields

    \n \n\n\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 \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

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

    Fields

    \n \n\n\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 \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base 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

    domains (VerifiableDomainConnection!)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

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

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base 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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

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

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\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

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 support entitlement users returned from the connection.

    \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 \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingCollaboratorEdge

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

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

    Fields

    \n \n\n\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 \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 or internal.

    \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 \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnterpriseUserAccount

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nEnvironment

    \n

    An environment.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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

    name (String!)

    The name of the environment.

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

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 \nEnvironmentConnection

    \n

    The connection type for Environment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([EnvironmentEdge])

    A list of edges.

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

    nodes ([Environment])

    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 \nEnvironmentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (Environment)

    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 \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nExternalIdentityEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nFollowerConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nFollowingConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nFundingLink

    \n

    A funding platform link for a repository.

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

    Fields

    \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 \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

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

    \n \n \n

    Fields

    \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 \nGist

    \n

    A Gist.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistComment

    \n

    Represents a comment on an Gist.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistCommentConnection

    \n

    The connection type for GistComment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistCommentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nGistConnection

    \n

    The connection type for Gist.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nGistFile

    \n

    A file in a gist.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nGitActorConnection

    \n

    The connection type for GitActor.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nGitActorEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nHovercard

    \n

    Detail needed to display a hovercard for a user.

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

    Fields

    \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 \nIpAllowListEntry

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nIpAllowListEntryEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nIssue

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \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

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \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 \nIssueComment

    \n

    Represents a comment on an Issue.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueCommentConnection

    \n

    The connection type for IssueComment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueCommentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nIssueConnection

    \n

    The connection type for Issue.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

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

    Fields

    \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 \nIssueEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nIssueTemplate

    \n

    A repository issue template.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineItemEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLabelConnection

    \n

    The connection type for Label.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nLabelEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLanguage

    \n

    Represents a given language found in repositories.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \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 \nLanguageConnection

    \n

    A list of languages associated with the parent.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLanguageEdge

    \n

    Represents the language of a repository.

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

    Fields

    \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 \nLicense

    \n

    A repository's open source license.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

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

    Fields

    \n \n\n\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 \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \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

    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 \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \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 \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nMarketplaceListingEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMilestone

    \n

    Represents a Milestone object on a given repository.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Identifies 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 \nMilestoneConnection

    \n

    The connection type for Milestone.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nMilestoneEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

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

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

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

    tenantId (String!)

    The id of the tenant this provider is attached to.

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

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 assignments 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 \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base repository permission level for the organization.

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

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base 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 \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganization

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    domains (VerifiableDomainConnection)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

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

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

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

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \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

    projectNext (ProjectNext)

    Find project by project next number.

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

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

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

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

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

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

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

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

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

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

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

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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 \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nOrganizationConnection

    \n

    The connection type for Organization.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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

    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 \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationInvitationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nOrganizationMemberConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackage

    \n

    Information for an uploaded package.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageConnection

    \n

    The connection type for Package.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPackageFile

    \n

    A file in a package version.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageFileConnection

    \n

    The connection type for PackageFile.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageFileEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

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

    Fields

    \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 \nPackageTag

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPackageVersion

    \n

    Information about a specific package version.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageVersionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

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

    Fields

    \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 \nPageInfo

    \n

    Information about pagination in a connection.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

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

    Fields

    \n \n\n\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 \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnableItemEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussion (Discussion!)

    The discussion that was pinned.

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

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

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

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

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

    pinnedBy (Actor!)

    The actor that pinned this discussion.

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

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \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

    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 \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([PinnedDiscussionEdge])

    A list of edges.

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

    nodes ([PinnedDiscussion])

    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 \nPinnedDiscussionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (PinnedDiscussion)

    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 \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProfileItemShowcase

    \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

    Fields

    \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 \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCard

    \n

    A card in a project.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCardConnection

    \n

    The connection type for ProjectCard.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectCardEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nProjectColumn

    \n

    A column inside a project.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectColumnEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nProjectConnection

    \n

    A list of projects associated with the owner.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts with tables and.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Returns true if the project 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

    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

    description (String)

    The project's description.

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

    fields (ProjectNextFieldConnection!)

    List of fields 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

    items (ProjectNextItemConnection!)

    List of items 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

    number (Int!)

    The project's number.

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

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \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

    title (String)

    The project's name.

    \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 \nProjectNextConnection

    \n

    The connection type for ProjectNext.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextEdge])

    A list of edges.

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

    nodes ([ProjectNext])

    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 \nProjectNextEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (ProjectNext)

    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 \nProjectNextField

    \n

    A field inside a project.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    name (String!)

    The project field's name.

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

    project (ProjectNext!)

    The project that contains this column.

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

    settings (String)

    The field's settings.

    \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 \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextFieldEdge])

    A list of edges.

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

    nodes ([ProjectNextField])

    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 \nProjectNextFieldEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (ProjectNextField)

    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 \nProjectNextItem

    \n

    An item in a Memex project.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \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 the item.

    \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

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    project (ProjectNext!)

    The project that contains this item.

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

    title (String)

    The title of the item.

    \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 \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemEdge])

    A list of edges.

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

    nodes ([ProjectNextItem])

    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 \nProjectNextItemEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (ProjectNextItem)

    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 \nProjectNextItemFieldValue

    \n

    An value of a field in an item of Memex project.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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)

    The actor who created the item.

    \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

    projectField (ProjectNextField!)

    The project field that contains this value.

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

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \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

    value (String)

    The value of a field.

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

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemFieldValueEdge])

    A list of edges.

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

    nodes ([ProjectNextItemFieldValue])

    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 \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (ProjectNextItemFieldValue)

    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 \nProjectProgress

    \n

    Project progress stats.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKey

    \n

    A user's public key.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKeyConnection

    \n

    The connection type for PublicKey.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPublicKeyEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequest

    \n

    A repository pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \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

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by 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

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \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

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \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

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

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

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \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

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

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

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \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 \nPullRequestChangedFile

    \n

    A file changed in a pull request.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestConnection

    \n

    The connection type for PullRequest.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

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

    Fields

    \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 \nPullRequestEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestReview

    \n

    A review object for a given pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

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

    Fields

    \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 \nPullRequestReviewEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (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 \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestRevisionMarker

    \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

    Fields

    \n \n\n\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 \nPullRequestTemplate

    \n

    A repository pull request template.

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

    Fields

    \n \n\n\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 template.

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

    filename (String)

    The filename of the template.

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

    repository (Repository!)

    The repository the template belongs to.

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

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nPush

    \n

    A Git push.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nPushAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nPushAllowanceEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRateLimit

    \n

    Represents the client's rate limit.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReactingUserConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

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

    Fields

    \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 \nReaction

    \n

    An emoji reaction to a particular piece of content.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    reactors (ReactorConnection!)

    Reactors 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

    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

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-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\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 \nReactorConnection

    \n

    The connection type for Reactor.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([ReactorEdge])

    A list of edges.

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

    nodes ([Reactor])

    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 \nReactorEdge

    \n

    Represents an author of a reaction.

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

    Fields

    \n \n\n\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 (Reactor!)

    The author of the reaction.

    \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 \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRef

    \n

    Represents a Git reference.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRefConnection

    \n

    The connection type for Ref.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nRefEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRefUpdateRule

    \n

    A ref update rules for a viewer.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \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 \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRelease

    \n

    A release contains the content for a release.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 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

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \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

    mentions (UserConnection)

    A list of users mentioned in the release description.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 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

    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

    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

    repository (Repository!)

    The repository that the release belongs to.

    \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

    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

    tagCommit (Commit)

    The tag commit for this release.

    \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

    viewerCanReact (Boolean!)

    Can user react to this subject.

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

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseAssetEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nReleaseConnection

    \n

    The connection type for Release.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 network.

    \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 \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepository

    \n

    A repository contains the content for a project.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\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

    discussion (Discussion)

    Returns a single discussion 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 discussion to be returned.

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

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available 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

    first (Int)

    \n

    Returns the first n elements 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

    discussions (DiscussionConnection!)

    A list of discussions 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

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \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

    environment (Environment)

    Returns a single active environment from the current repository by name.

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

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

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

    environments (EnvironmentConnection!)

    A list of environments that are 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\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

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \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 or internal.

    \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

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\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

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned 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\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues 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

    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

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\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

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \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 \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

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

    Fields

    \n \n\n\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 \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRepositoryContactLink

    \n

    A repository contact link.

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

    Fields

    \n \n\n\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 \nRepositoryEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

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

    Fields

    \n \n\n\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 \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryInvitationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

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

    \n \n \n

    Fields

    \n \n\n\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 \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryTopicEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 dismissed?.

    \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 vulnerability.

    \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 \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReviewDismissalAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReviewRequest

    \n

    A request for a user to review a pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewStatusHovercardContext

    \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

    Fields

    \n \n\n\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 \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSavedReplyConnection

    \n

    The connection type for SavedReply.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nSavedReplyEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussionCount (Int!)

    The number of discussions 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 \nSearchResultItemEdge

    \n

    An edge in a connection.

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

    Fields

    \n \n\n\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 \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    cvss (CVSS!)

    The CVSS associated with this advisory.

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

    cwes (CWEConnection!)

    CWEs 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

    first (Int)

    \n

    Returns the first n elements 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

    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

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \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 \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

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

    Fields

    \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 \nSecurityAdvisoryPackage

    \n

    An individual package.

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

    Fields

    \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 \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

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

    Fields

    \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 \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

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

    Fields

    \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 \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSponsorConnection

    \n

    The connection type for Sponsor.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorEdge])

    A list of edges.

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

    nodes ([Sponsor])

    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 \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

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

    Fields

    \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 (Sponsor)

    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 \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorableItemEdge])

    A list of edges.

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

    nodes ([SponsorableItem])

    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 \nSponsorableItemEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (SponsorableItem)

    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 \nSponsorsActivity

    \n

    An event related to sponsorship activity.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 (SponsorsActivityAction!)

    What action this activity indicates took place.

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

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

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

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

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

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

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

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

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

    timestamp (DateTime)

    The timestamp of this event.

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

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorsActivityEdge])

    A list of edges.

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

    nodes ([SponsorsActivity])

    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 \nSponsorsActivityEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (SponsorsActivity)

    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 \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 goal from the maintainer.

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

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

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

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

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

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

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

    title (String!)

    A brief summary of the kind and target value of this goal.

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

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \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

    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

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \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

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \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

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \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 \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \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

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

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

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \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 USD.

    \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 \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

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

    Fields

    \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 \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nSponsorsTierEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

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

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \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

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

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

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

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

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

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

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 contents of the newsletter, the message the sponsorable wanted to give.

    \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

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

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

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

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

    subject (String!)

    The subject of the newsletter, what it's about.

    \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 \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorshipNewsletterEdge])

    A list of edges.

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

    nodes ([SponsorshipNewsletter])

    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 \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (SponsorshipNewsletter)

    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 \nStargazerConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nStargazerEdge

    \n

    Represents a user that's starred a repository.

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

    Fields

    \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 \nStarredRepositoryConnection

    \n

    The connection type for Repository.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStarredRepositoryEdge

    \n

    Represents a starred repository.

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

    Fields

    \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 \nStatus

    \n

    Represents a commit status.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStatusCheckRollup

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nStatusContext

    \n

    Represents an individual commit status context.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

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

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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 \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSubmoduleConnection

    \n

    The connection type for Submodule.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nSubmoduleEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nSuggestedReviewer

    \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

    Fields

    \n \n\n\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 \nTag

    \n

    Represents a Git tag.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeam

    \n

    A team of users in an organization.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamConnection

    \n

    The connection type for Team.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussion

    \n

    A team discussion.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionComment

    \n

    A comment on a team discussion.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nTeamEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nTeamMemberConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRepositoryConnection

    \n

    The connection type for Repository.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRepositoryEdge

    \n

    Represents a team repository.

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

    Fields

    \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 \nTextMatch

    \n

    A text match within a search result.

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

    Fields

    \n \n\n\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 \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

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

    Fields

    \n \n\n\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 \nTopic

    \n

    A topic aggregates entities that are related to a subject.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    repositories (RepositoryConnection!)

    A list of 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

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \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 \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTree

    \n

    Represents a Git tree.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTreeEntry

    \n

    Represents a Git tree entry.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUser

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \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 check.

    \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 (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

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

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \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

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

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

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \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

    projectNext (ProjectNext)

    Find project by project next number.

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

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

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

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

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

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

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

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

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

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

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

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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. Inverse of is_following_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 \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserConnection

    \n

    The connection type for User.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEdit

    \n

    An edit on user content.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUserContentEditConnection

    \n

    A list of edits to content.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEditEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nUserEdge

    \n

    Represents a user.

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

    Fields

    \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 \nUserEmailMetadata

    \n

    Email attributes from External Identity.

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

    Fields

    \n \n\n\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 \nUserStatus

    \n

    The user's description of what they're currently doing.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 \nUserStatusConnection

    \n

    The connection type for UserStatus.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserStatusEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    dnsHostName (URI)

    The DNS host name that should be used for verification.

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

    domain (URI!)

    The unicode encoded domain.

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

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

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

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

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

    isApproved (Boolean!)

    Whether or not the domain is approved.

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

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

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

    isVerified (Boolean!)

    Whether or not the domain is verified.

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

    owner (VerifiableDomainOwner!)

    The owner of the domain.

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

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

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

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \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

    verificationToken (String)

    The current verification token for the domain.

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

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([VerifiableDomainEdge])

    A list of edges.

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

    nodes ([VerifiableDomain])

    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 \nVerifiableDomainEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (VerifiableDomain)

    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 \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

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

    \n \n \n

    Fields

    \n \n\n\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
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    name (String!)

    The name of the workflow.

    \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 \nWorkflowRun

    \n

    A workflow run.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \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

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 workflow run.

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

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \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 workflow run.

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

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nApp

    \n

    A GitHub App.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    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 \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \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

    reason (String)

    The reason auto-merge was disabled.

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

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

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

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \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 \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

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

    Fields

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

    authorEmail (String)

    The email address of the author of this auto-merge request.

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

    commitBody (String)

    The commit message of the auto-merge request.

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

    commitHeadline (String)

    The commit title of the auto-merge request.

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

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

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

    enabledBy (Actor)

    The actor who created the auto-merge request.

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

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

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

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

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

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \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 \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \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 \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBlame

    \n

    Represents a Git blame.

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

    Fields

    \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 \nBlameRange

    \n

    Represents a range of information from a Git blame.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nBlob

    \n

    Represents a Git blob.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBot

    \n

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

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBranchProtectionRule

    \n

    A branch protection rule.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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 \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

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

    Fields

    \n \n\n\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 \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCVSS

    \n

    The Common Vulnerability Scoring System.

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

    Fields

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

    score (Float!)

    The CVSS score associated with this advisory.

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

    vectorString (String)

    The CVSS vector string associated with this advisory.

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

    \n \n \nCWE

    \n

    A common weakness enumeration.

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

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

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

    cweId (String!)

    The id of the CWE.

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

    description (String!)

    A detailed description of this CWE.

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

    name (String!)

    The name of this CWE.

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

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

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

    Fields

    \n \n\n\n \n \n\n\n\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 ([CWEEdge])

    A list of edges.

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

    nodes ([CWE])

    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 \nCWEEdge

    \n

    An edge in a connection.

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

    Fields

    \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 (CWE)

    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 \nCheckAnnotation

    \n

    A single check annotation.

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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckAnnotationEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

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

    Fields

    \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 \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

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

    Fields

    \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 \nCheckRun

    \n

    A check run.

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

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

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

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in 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

    steps (CheckStepConnection)

    The check run's steps.

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

    Arguments

    \n\n
    \n

    after (String)

    \n

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

    \n\n
    \n\n
    \n

    before (String)

    \n

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

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \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 \nCheckRunConnection

    \n

    The connection type for CheckRun.

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

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckRunEdge

    \n

    An edge in a connection.

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

    Fields

    \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 \nCheckStep

    \n

    A single check step.

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

    Fields

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

    completedAt (DateTime)

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

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

    conclusion (CheckConclusionState)

    The conclusion of the check step.

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

    externalId (String)

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

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

    name (String!)

    The step's name.

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

    number (Int!)

    The index of the step in the list of steps of the parent check run.

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

    secondsToCompletion (Int)

    Number of seconds to completion.

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

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    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 \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CheckStep)

    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 \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    creator (User)

    The user who triggered the check suite.

    \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

    workflowRun (WorkflowRun)

    The workflow run associated with 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 \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer 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 \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContentAttachment

    \n

    A content attachment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContentReference

    \n

    A content reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \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 \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestReviewContribution

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependency

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \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 name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \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 \nDependencyGraphDependencyConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependencyEdge

    \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

    Fields

    \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 \nDependencyGraphManifest

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDependencyGraphManifestConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphManifestEdge

    \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

    Fields

    \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 \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    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 \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentProtectionRule)

    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 \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    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 \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentRequest)

    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 \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \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

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    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 \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReview)

    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 \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    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 \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReviewer)

    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 \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\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!)

    The main text of the discussion post.

    \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

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the 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

    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

    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

    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

    number (Int!)

    The number identifying this discussion within the repository.

    \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 path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The 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

    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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \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 \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \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

    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 \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    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 \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionCategory)

    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 \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \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

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \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

    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

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion 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

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \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

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    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 \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionComment)

    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 \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    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 \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Discussion)

    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 \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseAdministratorInvitation

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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 \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base 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

    domains (VerifiableDomainConnection!)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base 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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\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

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 support entitlement users returned from the connection.

    \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 \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingCollaboratorEdge

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 or internal.

    \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 \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseUserAccount

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    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 \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Environment)

    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 \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \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 \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIpAllowListEntry

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssue

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \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

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \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 \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \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 \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \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

    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 \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \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 \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Identifies 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 \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 assignments 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 \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base 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 \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganization

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    domains (VerifiableDomainConnection)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \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

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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 \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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

    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 \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageTag

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \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

    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 \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    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 \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (PinnedDiscussion)

    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 \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProfileItemShowcase

    \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

    Fields

    \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 \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts using tables and boards.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Returns true if the project 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

    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

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields 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

    items (ProjectNextItemConnection!)

    List of items 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

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \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

    title (String)

    The project's name.

    \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 \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    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 \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNext)

    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 \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \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 \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    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 \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextField)

    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 \nProjectNextItem

    \n

    An item within a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \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 the item.

    \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

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \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 \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    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 \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextItem)

    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 \nProjectNextItemFieldValue

    \n

    An value of a field in an item of a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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)

    The actor who created the item.

    \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

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \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

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    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 \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextItemFieldValue)

    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 \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \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

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by 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

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \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

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \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

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \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

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \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 \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (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 \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestRevisionMarker

    \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

    Fields

    \n \n\n\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 \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nPushAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    reactors (ReactorConnection!)

    Reactors 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

    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

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-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\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 \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    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 \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 (Reactor!)

    The author of the reaction.

    \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 \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \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 \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 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

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \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

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 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

    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

    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

    repository (Repository!)

    The repository that the release belongs to.

    \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

    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

    tagCommit (Commit)

    The tag commit for this release.

    \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

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 network.

    \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 \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\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

    discussion (Discussion)

    Returns a single discussion 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 discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available 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

    first (Int)

    \n

    Returns the first n elements 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

    discussions (DiscussionConnection!)

    A list of discussions 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

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \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

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are 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\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

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \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 or internal.

    \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

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\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

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned 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\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues 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

    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

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\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

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \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 \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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 \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 dismissed?.

    \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 vulnerability.

    \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 \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReviewDismissalAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewStatusHovercardContext

    \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

    Fields

    \n \n\n\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 \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussionCount (Int!)

    The number of discussions 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 \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs 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

    first (Int)

    \n

    Returns the first n elements 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

    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

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \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 \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    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 \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Sponsor)

    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 \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    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 \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorableItem)

    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 \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    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 \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorsActivity)

    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 \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \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

    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

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \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

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \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

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \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 \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \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

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \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 USD.

    \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 \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \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

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 contents of the newsletter, the message the sponsorable wanted to give.

    \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

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \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 \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    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 \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorshipNewsletter)

    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 \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStatusCheckRollup

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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 \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nSuggestedReviewer

    \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

    Fields

    \n \n\n\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 \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    repositories (RepositoryConnection!)

    A list of 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

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \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 \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUser

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \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 check.

    \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 (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \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

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \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

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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. Inverse of is_following_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 \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \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

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    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 \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (VerifiableDomain)

    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 \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    name (String!)

    The name of the workflow.

    \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 \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \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

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n ActorLocation", @@ -3659,7 +3659,7 @@ ] }, "ghec": { - "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    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 \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \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

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \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 \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \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 \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \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 \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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 \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    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 \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CWE)

    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 \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in 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

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \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 \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    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 \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CheckStep)

    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 \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    creator (User)

    The user who triggered the check suite.

    \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

    workflowRun (WorkflowRun)

    The workflow run associated with 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 \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer 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 \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContentAttachment

    \n

    A content attachment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContentReference

    \n

    A content reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \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 \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestReviewContribution

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependency

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \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 name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \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 \nDependencyGraphDependencyConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependencyEdge

    \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

    Fields

    \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 \nDependencyGraphManifest

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDependencyGraphManifestConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphManifestEdge

    \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

    Fields

    \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 \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    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 \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentProtectionRule)

    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 \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    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 \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentRequest)

    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 \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \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

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    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 \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReview)

    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 \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    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 \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReviewer)

    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 \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\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!)

    The main text of the discussion post.

    \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

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the 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

    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

    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

    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

    number (Int!)

    The number identifying this discussion within the repository.

    \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 path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The 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

    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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \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 \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \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

    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 \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    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 \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionCategory)

    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 \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \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

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \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

    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

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion 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

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \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

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    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 \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionComment)

    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 \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    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 \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Discussion)

    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 \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseAdministratorInvitation

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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 \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base 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

    domains (VerifiableDomainConnection!)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base 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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\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

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 support entitlement users returned from the connection.

    \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 \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingCollaboratorEdge

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 or internal.

    \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 \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseUserAccount

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    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 \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Environment)

    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 \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \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 \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIpAllowListEntry

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssue

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \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

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \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 \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \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 \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \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

    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 \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \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 \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Identifies 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 \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 assignments 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 \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base 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 \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganization

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    domains (VerifiableDomainConnection)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \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

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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 \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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

    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 \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageTag

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \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

    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 \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    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 \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (PinnedDiscussion)

    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 \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProfileItemShowcase

    \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

    Fields

    \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 \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts with tables and.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Returns true if the project 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

    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

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields 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

    items (ProjectNextItemConnection!)

    List of items 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

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \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

    title (String)

    The project's name.

    \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 \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    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 \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNext)

    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 \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \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 \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    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 \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextField)

    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 \nProjectNextItem

    \n

    An item in a Memex project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \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 the item.

    \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

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \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 \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    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 \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextItem)

    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 \nProjectNextItemFieldValue

    \n

    An value of a field in an item of Memex project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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)

    The actor who created the item.

    \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

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \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

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    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 \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextItemFieldValue)

    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 \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \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

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by 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

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \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

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \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

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \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

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \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 \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (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 \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestRevisionMarker

    \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

    Fields

    \n \n\n\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 \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nPushAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    reactors (ReactorConnection!)

    Reactors 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

    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

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-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\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 \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    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 \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 (Reactor!)

    The author of the reaction.

    \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 \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \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 \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 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

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \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

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 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

    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

    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

    repository (Repository!)

    The repository that the release belongs to.

    \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

    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

    tagCommit (Commit)

    The tag commit for this release.

    \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

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 network.

    \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 \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\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

    discussion (Discussion)

    Returns a single discussion 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 discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available 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

    first (Int)

    \n

    Returns the first n elements 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

    discussions (DiscussionConnection!)

    A list of discussions 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

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \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

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are 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\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

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \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 or internal.

    \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

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\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

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned 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\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues 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

    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

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\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

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \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 \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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 \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 dismissed?.

    \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 vulnerability.

    \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 \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReviewDismissalAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewStatusHovercardContext

    \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

    Fields

    \n \n\n\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 \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussionCount (Int!)

    The number of discussions 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 \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs 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

    first (Int)

    \n

    Returns the first n elements 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

    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

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \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 \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    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 \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Sponsor)

    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 \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    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 \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorableItem)

    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 \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    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 \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorsActivity)

    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 \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \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

    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

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \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

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \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

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \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 \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \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

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \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 USD.

    \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 \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \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

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 contents of the newsletter, the message the sponsorable wanted to give.

    \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

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \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 \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    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 \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorshipNewsletter)

    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 \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStatusCheckRollup

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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 \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nSuggestedReviewer

    \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

    Fields

    \n \n\n\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 \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    repositories (RepositoryConnection!)

    A list of 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

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \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 \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUser

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \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 check.

    \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 (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \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

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \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

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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. Inverse of is_following_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 \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \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

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    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 \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (VerifiableDomain)

    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 \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    name (String!)

    The name of the workflow.

    \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 \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \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

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    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 \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \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

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \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 \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \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 \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \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 \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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 \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    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 \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CWE)

    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 \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in 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

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \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 \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    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 \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CheckStep)

    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 \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    creator (User)

    The user who triggered the check suite.

    \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

    workflowRun (WorkflowRun)

    The workflow run associated with 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 \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer 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 \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContentAttachment

    \n

    A content attachment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContentReference

    \n

    A content reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \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 \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestReviewContribution

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependency

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    packageLabel (String!)

    The original name of the package, as it appears in the manifest.

    \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 name of the package in the canonical form used by the package manager.\nThis may differ from the original textual form (see packageLabel), for example\nin a package manager that uses case-insensitive comparisons.

    \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 \nDependencyGraphDependencyConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphDependencyEdge

    \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

    Fields

    \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 \nDependencyGraphManifest

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDependencyGraphManifestConnection

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nDependencyGraphManifestEdge

    \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

    Fields

    \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 \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    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 \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentProtectionRule)

    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 \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    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 \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentRequest)

    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 \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \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

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    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 \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReview)

    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 \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    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 \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReviewer)

    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 \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\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!)

    The main text of the discussion post.

    \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

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the 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

    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

    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

    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

    number (Int!)

    The number identifying this discussion within the repository.

    \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 path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The 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

    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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \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 \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \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

    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 \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    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 \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionCategory)

    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 \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \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

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \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

    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

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion 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

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \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

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    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 \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionComment)

    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 \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    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 \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Discussion)

    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 \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseAdministratorInvitation

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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 \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base 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

    domains (VerifiableDomainConnection!)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter whether or not the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter whether or not the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base 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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this enterprise is restricted to verified or approved domains.

    \n\n\n\n\n\n\n\n\n\n\n\n

    oidcProvider (OIDCProvider)

    The OIDC Identity Provider for the enterprise.

    \n\n\n\n\n\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

    supportEntitlements (EnterpriseMemberConnection!)

    A list of members with a support entitlement.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 support entitlement users returned from the connection.

    \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 \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingCollaboratorEdge

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 or internal.

    \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 \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerInstallationConnection

    \n

    The connection type for EnterpriseServerInstallation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerInstallationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseUserAccount

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    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 \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Environment)

    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 \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFundingLink

    \n

    A funding platform link for a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \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 \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIpAllowListEntry

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssue

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \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

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \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 \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \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 \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \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

    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 \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nMarketplaceCategory

    \n

    A public description of a Marketplace category.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMarketplaceListing

    \n

    A listing in the GitHub integration marketplace.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    hasVerifiedOwner (Boolean!)

    Whether the creator of the app is a verified org.

    \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 \nMarketplaceListingConnection

    \n

    Look up Marketplace Listings.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMarketplaceListingEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Identifies 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 \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOIDCProvider

    \n

    An OIDC identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \n\n
    \n\n
    \n\n\n

    providerType (OIDCProviderType!)

    The OIDC identity provider type.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tenantId (String!)

    The id of the tenant this provider is attached to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 assignments 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 \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base 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 \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganization

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    domains (VerifiableDomainConnection)

    A list of domains 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

    isApproved (Boolean)

    \n

    Filter by if the domain is approved.

    \n\n
    \n\n
    \n

    isVerified (Boolean)

    \n

    Filter by if the domain is verified.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    orderBy (VerifiableDomainOrder)

    \n

    Ordering options for verifiable domains returned.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \n\n\n\n\n\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

    notificationDeliveryRestrictionEnabledSetting (NotificationRestrictionSettingValue!)

    Indicates if email notification delivery for this organization is restricted to verified or approved domains.

    \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

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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 \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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

    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 \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackage

    \n

    Information for an uploaded package.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageConnection

    \n

    The connection type for Package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageFile

    \n

    A file in a package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageFileConnection

    \n

    The connection type for PackageFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageStatistics

    \n

    Represents a object that contains package activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageTag

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPackageVersion

    \n

    Information about a specific package version.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPackageVersionConnection

    \n

    The connection type for PackageVersion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPackageVersionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPackageVersionStatistics

    \n

    Represents a object that contains package version activity statistics such as downloads.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \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

    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 \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    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 \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (PinnedDiscussion)

    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 \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProfileItemShowcase

    \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

    Fields

    \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 \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectNext

    \n

    New projects that manage issues, pull requests and drafts using tables and boards.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Returns true if the project 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

    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

    description (String)

    The project's description.

    \n\n\n\n\n\n\n\n\n\n\n\n

    fields (ProjectNextFieldConnection!)

    List of fields 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

    items (ProjectNextItemConnection!)

    List of items 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

    number (Int!)

    The project's number.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (ProjectNextOwner!)

    The project's owner. Currently limited to organizations and users.

    \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

    title (String)

    The project's name.

    \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 \nProjectNextConnection

    \n

    The connection type for ProjectNext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNext])

    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 \nProjectNextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNext)

    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 \nProjectNextField

    \n

    A field inside a project.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    name (String!)

    The project field's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    project (ProjectNext!)

    The project that contains this column.

    \n\n\n\n\n\n\n\n\n\n\n\n

    settings (String)

    The field's settings.

    \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 \nProjectNextFieldConnection

    \n

    The connection type for ProjectNextField.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextFieldEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextField])

    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 \nProjectNextFieldEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextField)

    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 \nProjectNextItem

    \n

    An item within a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (ProjectNextItemContent)

    The content of the referenced issue or pull request.

    \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 the item.

    \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

    fieldValues (ProjectNextItemFieldValueConnection!)

    List of field values.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    project (ProjectNext!)

    The project that contains this item.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String)

    The title of the item.

    \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 \nProjectNextItemConnection

    \n

    The connection type for ProjectNextItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItem])

    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 \nProjectNextItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextItem)

    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 \nProjectNextItemFieldValue

    \n

    An value of a field in an item of a new Project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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)

    The actor who created the item.

    \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

    projectField (ProjectNextField!)

    The project field that contains this value.

    \n\n\n\n\n\n\n\n\n\n\n\n

    projectItem (ProjectNextItem!)

    The project item that contains this value.

    \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

    value (String)

    The value of a field.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nProjectNextItemFieldValueConnection

    \n

    The connection type for ProjectNextItemFieldValue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ProjectNextItemFieldValueEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([ProjectNextItemFieldValue])

    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 \nProjectNextItemFieldValueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (ProjectNextItemFieldValue)

    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 \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \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

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by 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

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \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

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \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

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \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

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \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 \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (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 \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestRevisionMarker

    \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

    Fields

    \n \n\n\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 \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nPushAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    reactors (ReactorConnection!)

    Reactors 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

    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

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-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\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 \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    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 \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 (Reactor!)

    The author of the reaction.

    \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 \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \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 \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 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

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \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

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 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

    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

    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

    repository (Repository!)

    The repository that the release belongs to.

    \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

    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

    tagCommit (Commit)

    The tag commit for this release.

    \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

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 network.

    \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 \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\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

    discussion (Discussion)

    Returns a single discussion 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 discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available 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

    first (Int)

    \n

    Returns the first n elements 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

    discussions (DiscussionConnection!)

    A list of discussions 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

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \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

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are 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\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

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \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 or internal.

    \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

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\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

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned 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\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues 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

    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

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\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

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \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 \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryInteractionAbility

    \n

    Repository interaction limit that applies to this object.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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 \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 dismissed?.

    \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 vulnerability.

    \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 \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReviewDismissalAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewStatusHovercardContext

    \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

    Fields

    \n \n\n\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 \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussionCount (Int!)

    The number of discussions 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 \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs 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

    first (Int)

    \n

    Returns the first n elements 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

    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

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \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 \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSponsorConnection

    \n

    The connection type for Sponsor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Sponsor])

    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 \nSponsorEdge

    \n

    Represents a user or organization who is sponsoring someone in GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Sponsor)

    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 \nSponsorableItemConnection

    \n

    The connection type for SponsorableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorableItemEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorableItem])

    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 \nSponsorableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorableItem)

    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 \nSponsorsActivity

    \n

    An event related to sponsorship activity.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 (SponsorsActivityAction!)

    What action this activity indicates took place.

    \n\n\n\n\n\n\n\n\n\n\n\n

    previousSponsorsTier (SponsorsTier)

    The tier that the sponsorship used to use, for tier change events.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsor (Sponsor)

    The user or organization who triggered this activity and was/is sponsoring the sponsorable.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization that is being sponsored, the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorsTier (SponsorsTier)

    The associated sponsorship tier.

    \n\n\n\n\n\n\n\n\n\n\n\n

    timestamp (DateTime)

    The timestamp of this event.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsActivityConnection

    \n

    The connection type for SponsorsActivity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorsActivityEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorsActivity])

    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 \nSponsorsActivityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorsActivity)

    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 \nSponsorsGoal

    \n

    A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 goal from the maintainer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    kind (SponsorsGoalKind!)

    What the objective of this goal is.

    \n\n\n\n\n\n\n\n\n\n\n\n

    percentComplete (Int!)

    The percentage representing how complete this goal is, between 0-100.

    \n\n\n\n\n\n\n\n\n\n\n\n

    targetValue (Int!)

    What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    A brief summary of the kind and target value of this goal.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorsListing

    \n

    A GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    activeGoal (SponsorsGoal)

    The current goal the maintainer is trying to reach with GitHub Sponsors, if any.

    \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

    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

    isPublic (Boolean!)

    Whether this listing is publicly visible.

    \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

    nextPayoutDate (Date)

    A future date on which this listing is eligible to receive a payout.

    \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

    sponsorable (Sponsorable!)

    The entity this listing represents who can be sponsored on GitHub Sponsors.

    \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 \nSponsorsTier

    \n

    A GitHub Sponsors tier associated with a GitHub Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    closestLesserValueTier (SponsorsTier)

    Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with an equal or lesser cost. Returns the published tier with\nthe monthly price closest to this tier's without going over.

    \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

    isCustomAmount (Boolean!)

    Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isOneTime (Boolean!)

    Whether this tier is only for use with one-time sponsorships.

    \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 USD.

    \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 \nSponsorsTierAdminInfo

    \n

    SponsorsTier information only visible to users that can administer the associated Sponsors listing.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorsTierConnection

    \n

    The connection type for SponsorsTier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSponsorsTierEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorship

    \n

    A sponsorship relationship between a sponsor and a maintainer.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isOneTimePayment (Boolean!)

    Whether this sponsorship represents a one-time payment versus a recurring sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isSponsorOptedIntoEmail (Boolean)

    Check if the sponsor has chosen to receive sponsorship update emails sent from\nthe sponsorable. Only returns a non-null value when the viewer has permission to know this.

    \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

    tierSelectedAt (DateTime)

    Identifies the date and time when the current tier was chosen for this sponsorship.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipConnection

    \n

    The connection type for Sponsorship.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    totalRecurringMonthlyPriceInCents (Int!)

    The total amount in cents of all recurring sponsorships in the connection\nwhose amount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n

    totalRecurringMonthlyPriceInDollars (Int!)

    The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nSponsorshipEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSponsorshipNewsletter

    \n

    An update sent to sponsors of a user or organization on GitHub Sponsors.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 contents of the newsletter, the message the sponsorable wanted to give.

    \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

    isPublished (Boolean!)

    Indicates if the newsletter has been made available to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorable (Sponsorable!)

    The user or organization this newsletter is from.

    \n\n\n\n\n\n\n\n\n\n\n\n

    subject (String!)

    The subject of the newsletter, what it's about.

    \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 \nSponsorshipNewsletterConnection

    \n

    The connection type for SponsorshipNewsletter.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([SponsorshipNewsletterEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([SponsorshipNewsletter])

    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 \nSponsorshipNewsletterEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (SponsorshipNewsletter)

    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 \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStatusCheckRollup

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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 \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nSuggestedReviewer

    \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

    Fields

    \n \n\n\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 \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    repositories (RepositoryConnection!)

    A list of 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

    sponsorableOnly (Boolean)

    \n

    If true, only repositories whose owner can be sponsored via GitHub Sponsors will be returned.

    \n

    The default value is false.

    \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 \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUser

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \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 check.

    \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 (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \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

    estimatedNextSponsorsPayoutInCents (Int!)

    The estimated next GitHub Sponsors payout for this user/organization in cents (USD).

    \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

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \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

    isSponsoredBy (Boolean!)

    Check if the given account is sponsoring this user/organization.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    accountLogin (String!)

    \n

    The target account's login.

    \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

    monthlyEstimatedSponsorsIncomeInCents (Int!)

    The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).

    \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

    projectNext (ProjectNext)

    Find project by project next number.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    number (Int!)

    \n

    The project next number.

    \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

    projectsNext (ProjectNextConnection!)

    A list of project next items 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\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

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    sponsoring (SponsorConnection!)

    List of users and organizations this entity is sponsoring.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorOrder)

    \n

    Ordering options for the users and organizations returned from the connection.

    \n\n
    \n\n
    \n\n\n

    sponsors (SponsorConnection!)

    List of sponsors for this user or 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 (SponsorOrder)

    \n

    Ordering options for sponsors returned from the connection.

    \n\n
    \n\n
    \n

    tierId (ID)

    \n

    If given, will filter for sponsors at the given tier. Will only return\nsponsors whose tier the viewer is permitted to see.

    \n\n
    \n\n
    \n\n\n

    sponsorsActivities (SponsorsActivityConnection!)

    Events involving this sponsorable, such as new sponsorships.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorsActivityOrder)

    \n

    Ordering options for activity returned from the connection.

    \n\n
    \n\n
    \n

    period (SponsorsActivityPeriod)

    \n

    Filter activities returned to only those that occurred in a given time range.

    \n

    The default value is MONTH.

    \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

    sponsorshipForViewerAsSponsor (Sponsorship)

    The sponsorship from the viewer to this user/organization; that is, the\nsponsorship where you're the sponsor. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipForViewerAsSponsorable (Sponsorship)

    The sponsorship from this user/organization to the viewer; that is, the\nsponsorship you're receiving. Only returns a sponsorship if it is active.

    \n\n\n\n\n\n\n\n\n\n\n\n

    sponsorshipNewsletters (SponsorshipNewsletterConnection!)

    List of sponsorship updates sent from this sponsorable to sponsors.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (SponsorshipNewsletterOrder)

    \n

    Ordering options for sponsorship updates returned from the connection.

    \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. Inverse of is_following_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 \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nVerifiableDomain

    \n

    A domain that can be verified or approved for an organization or an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    dnsHostName (URI)

    The DNS host name that should be used for verification.

    \n\n\n\n\n\n\n\n\n\n\n\n

    domain (URI!)

    The unicode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundHostName (Boolean!)

    Whether a TXT record for verification with the expected host name was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    hasFoundVerificationToken (Boolean!)

    Whether a TXT record for verification with the expected verification token was found.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isApproved (Boolean!)

    Whether or not the domain is approved.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isRequiredForPolicyEnforcement (Boolean!)

    Whether this domain is required to exist for an organization or enterprise policy to be enforced.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isVerified (Boolean!)

    Whether or not the domain is verified.

    \n\n\n\n\n\n\n\n\n\n\n\n

    owner (VerifiableDomainOwner!)

    The owner of the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    punycodeEncodedDomain (URI!)

    The punycode encoded domain.

    \n\n\n\n\n\n\n\n\n\n\n\n

    tokenExpirationTime (DateTime)

    The time that the current verification token will expire.

    \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

    verificationToken (String)

    The current verification token for the domain.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nVerifiableDomainConnection

    \n

    The connection type for VerifiableDomain.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([VerifiableDomainEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([VerifiableDomain])

    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 \nVerifiableDomainEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (VerifiableDomain)

    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 \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    name (String!)

    The name of the workflow.

    \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 \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \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

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n ActorLocation", @@ -20155,7 +20155,7 @@ ] }, "ghae": { - "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    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 \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \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

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \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 \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \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 \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \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 \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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 \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    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 \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CWE)

    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 \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in 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

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \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 \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    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 \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CheckStep)

    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 \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    creator (User)

    The user who triggered the check suite.

    \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

    workflowRun (WorkflowRun)

    The workflow run associated with 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 \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer 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 \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContentAttachment

    \n

    A content attachment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContentReference

    \n

    A content reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \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 \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestReviewContribution

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    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 \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentProtectionRule)

    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 \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    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 \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentRequest)

    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 \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \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

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    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 \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReview)

    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 \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    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 \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReviewer)

    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 \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\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!)

    The main text of the discussion post.

    \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

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the 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

    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

    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

    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

    number (Int!)

    The number identifying this discussion within the repository.

    \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 path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The 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

    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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \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 \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \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

    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 \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    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 \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionCategory)

    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 \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \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

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \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

    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

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion 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

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \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

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    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 \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionComment)

    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 \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    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 \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Discussion)

    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 \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseAdministratorInvitation

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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 \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base 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

    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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base 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 \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingCollaboratorEdge

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 or internal.

    \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 \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseUserAccount

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    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 \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Environment)

    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 \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \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 \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIpAllowListEntry

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssue

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \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

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \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 \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \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 \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \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

    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 \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Identifies 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 \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 assignments 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 \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base 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 \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganization

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \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

    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

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    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

    viewerIsAMember (Boolean!)

    Viewer is an active member of this 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 \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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

    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 \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \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

    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 \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    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 \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (PinnedDiscussion)

    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 \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProfileItemShowcase

    \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

    Fields

    \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 \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \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

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by 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

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \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

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \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

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \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

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \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 \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (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 \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestRevisionMarker

    \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

    Fields

    \n \n\n\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 \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nPushAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    reactors (ReactorConnection!)

    Reactors 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

    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

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-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\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 \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    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 \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 (Reactor!)

    The author of the reaction.

    \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 \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \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 \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 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

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \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

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 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

    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

    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

    repository (Repository!)

    The repository that the release belongs to.

    \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

    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

    tagCommit (Commit)

    The tag commit for this release.

    \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

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 network.

    \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 \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\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

    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

    discussion (Discussion)

    Returns a single discussion 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 discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available 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

    first (Int)

    \n

    Returns the first n elements 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

    discussions (DiscussionConnection!)

    A list of discussions 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

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \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

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are 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\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

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \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

    hasAnonymousAccessEnabled (Boolean!)

    Indicates if the repository has anonymous Git read access feature enabled.

    \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 or internal.

    \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

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\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

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned 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\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues 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

    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

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\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

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \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 \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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 \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 dismissed?.

    \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 vulnerability.

    \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 \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReviewDismissalAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewStatusHovercardContext

    \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

    Fields

    \n \n\n\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 \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussionCount (Int!)

    The number of discussions 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 \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs 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

    first (Int)

    \n

    Returns the first n elements 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

    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

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \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

    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 \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStatusCheckRollup

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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 \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nSuggestedReviewer

    \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

    Fields

    \n \n\n\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 \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    repositories (RepositoryConnection!)

    A list of 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

    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 \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUser

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \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 check.

    \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 (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \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

    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

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \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

    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

    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

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    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

    suspendedAt (DateTime)

    Identifies the date and time when the user was suspended.

    \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

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \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 \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    name (String!)

    The name of the workflow.

    \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 \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \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

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", + "html": "
    \n
    \n

    \n \n \nActorLocation

    \n

    Location information for an actor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAddedToProjectEvent

    \n

    Represents aadded_to_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nApp

    \n

    A GitHub App.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    ipAllowListEntries (IpAllowListEntryConnection!)

    The IP addresses of the app.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    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 \nAssignedEvent

    \n

    Represents anassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutoMergeDisabledEvent

    \n

    Represents aauto_merge_disabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    disabler (User)

    The user who disabled auto-merge for this Pull Request.

    \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

    reason (String)

    The reason auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reasonCode (String)

    The reason_code relating to why auto-merge was disabled.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoMergeEnabledEvent

    \n

    Represents aauto_merge_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge for this Pull Request.

    \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 \nAutoMergeRequest

    \n

    Represents an auto-merge request for a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    authorEmail (String)

    The email address of the author of this auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitBody (String)

    The commit message of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    commitHeadline (String)

    The commit title of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledAt (DateTime)

    When was this auto-merge request was enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    enabledBy (Actor)

    The actor who created the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    mergeMethod (PullRequestMergeMethod!)

    The merge method of the auto-merge request.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pullRequest (PullRequest!)

    The pull request that this auto-merge request is set against.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nAutoRebaseEnabledEvent

    \n

    Represents aauto_rebase_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (rebase) for this Pull Request.

    \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 \nAutoSquashEnabledEvent

    \n

    Represents aauto_squash_enabledevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    enabler (User)

    The user who enabled auto-merge (squash) for this Pull Request.

    \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 \nAutomaticBaseChangeFailedEvent

    \n

    Represents aautomatic_base_change_failedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nAutomaticBaseChangeSucceededEvent

    \n

    Represents aautomatic_base_change_succeededevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nBaseRefChangedEvent

    \n

    Represents abase_ref_changedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBaseRefDeletedEvent

    \n

    Represents abase_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBaseRefForcePushedEvent

    \n

    Represents abase_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBlame

    \n

    Represents a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBlameRange

    \n

    Represents a range of information from a Git blame.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBlob

    \n

    Represents a Git blob.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBot

    \n

    A special type of user which takes actions on behalf of GitHub Apps.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nBranchProtectionRule

    \n

    A branch protection rule.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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 \nBranchProtectionRuleConflict

    \n

    A conflict between two branch protection rules.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nBranchProtectionRuleConflictConnection

    \n

    The connection type for BranchProtectionRuleConflict.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleConflictEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nBranchProtectionRuleConnection

    \n

    The connection type for BranchProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nBranchProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCVSS

    \n

    The Common Vulnerability Scoring System.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    score (Float!)

    The CVSS score associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    vectorString (String)

    The CVSS vector string associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWE

    \n

    A common weakness enumeration.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cweId (String!)

    The id of the CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    description (String!)

    A detailed description of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this CWE.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCWEConnection

    \n

    The connection type for CWE.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CWEEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CWE])

    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 \nCWEEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CWE)

    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 \nCheckAnnotation

    \n

    A single check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCheckAnnotationConnection

    \n

    The connection type for CheckAnnotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckAnnotationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationPosition

    \n

    A character position in a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckAnnotationSpan

    \n

    An inclusive pair of positions for a check annotation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckRun

    \n

    A check run.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deployment (Deployment)

    The corresponding deployment for this job, if any.

    \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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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

    pendingDeploymentRequest (DeploymentRequest)

    Information about a pending deployment, if any, in 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

    steps (CheckStepConnection)

    The check run's steps.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    number (Int)

    \n

    Step number.

    \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 \nCheckRunConnection

    \n

    The connection type for CheckRun.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckRunEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCheckStep

    \n

    A single check step.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    completedAt (DateTime)

    Identifies the date and time when the check step was completed.

    \n\n\n\n\n\n\n\n\n\n\n\n

    conclusion (CheckConclusionState)

    The conclusion of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n

    externalId (String)

    A reference for the check step on the integrator's system.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The step's name.

    \n\n\n\n\n\n\n\n\n\n\n\n

    number (Int!)

    The index of the step in the list of steps of the parent check run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    secondsToCompletion (Int)

    Number of seconds to completion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    startedAt (DateTime)

    Identifies the date and time when the check step was started.

    \n\n\n\n\n\n\n\n\n\n\n\n

    status (CheckStatusState!)

    The current status of the check step.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nCheckStepConnection

    \n

    The connection type for CheckStep.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([CheckStepEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([CheckStep])

    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 \nCheckStepEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (CheckStep)

    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 \nCheckSuite

    \n

    A check suite.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    creator (User)

    The user who triggered the check suite.

    \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

    workflowRun (WorkflowRun)

    The workflow run associated with 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 \nCheckSuiteConnection

    \n

    The connection type for CheckSuite.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCheckSuiteEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nClosedEvent

    \n

    Represents aclosedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCodeOfConduct

    \n

    The Code of Conduct for a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommentDeletedEvent

    \n

    Represents acomment_deletedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommit

    \n

    Represents a Git commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 merged Pull Request that introduced the commit to the repository. If the\ncommit is not present in the default branch, additionally returns open Pull\nRequests associated with the commit.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 committed via GitHub web UI.

    \n\n\n\n\n\n\n\n\n\n\n\n

    committer (GitActor)

    Committer 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 \nCommitComment

    \n

    Represents a comment on a given Commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCommitCommentConnection

    \n

    The connection type for CommitComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitCommentThread

    \n

    A thread of comments on a commit.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nCommitConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitContributionsByRepository

    \n

    This aggregates commits made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCommitHistoryConnection

    \n

    The connection type for Commit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nConnectedEvent

    \n

    Represents aconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContentAttachment

    \n

    A content attachment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContentReference

    \n

    A content reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionCalendar

    \n

    A calendar of contributions made on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nContributionCalendarDay

    \n

    Represents a single day of contributions on GitHub by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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

    contributionLevel (ContributionLevel!)

    Indication of contributions, relative to other days. Can be used to indicate\nwhich color to represent this day on a calendar.

    \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 \nContributionCalendarMonth

    \n

    A month of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nContributionCalendarWeek

    \n

    A week of contributions in a user's contribution graph.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nContributionsCollection

    \n

    A contributions collection aggregates contributions such as opened issues and commits created by a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nConvertToDraftEvent

    \n

    Represents aconvert_to_draftevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nConvertedNoteToIssueEvent

    \n

    Represents aconverted_note_to_issueevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContribution

    \n

    Represents the contribution a user made by committing to a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedCommitContributionConnection

    \n

    The connection type for CreatedCommitContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedCommitContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedIssueContribution

    \n

    Represents the contribution a user made on GitHub by opening an issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedIssueContributionConnection

    \n

    The connection type for CreatedIssueContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedIssueContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestContribution

    \n

    Represents the contribution a user made on GitHub by opening a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestContributionConnection

    \n

    The connection type for CreatedPullRequestContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedPullRequestReviewContribution

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedPullRequestReviewContributionConnection

    \n

    The connection type for CreatedPullRequestReviewContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedPullRequestReviewContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCreatedRepositoryContribution

    \n

    Represents the contribution a user made on GitHub by creating a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nCreatedRepositoryContributionConnection

    \n

    The connection type for CreatedRepositoryContribution.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nCreatedRepositoryContributionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nCrossReferencedEvent

    \n

    Represents a mention made by one issue or pull request to another.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDemilestonedEvent

    \n

    Represents ademilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKey

    \n

    A repository deploy key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDeployKeyConnection

    \n

    The connection type for DeployKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeployKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeployedEvent

    \n

    Represents adeployedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeployment

    \n

    Represents triggered deployment instance.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentConnection

    \n

    The connection type for Deployment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDeploymentEnvironmentChangedEvent

    \n

    Represents adeployment_environment_changedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentProtectionRule

    \n

    A protection rule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    timeout (Int!)

    The timeout in minutes for this protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n

    type (DeploymentProtectionRuleType!)

    The type of protection rule.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentProtectionRuleConnection

    \n

    The connection type for DeploymentProtectionRule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentProtectionRuleEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentProtectionRule])

    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 \nDeploymentProtectionRuleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentProtectionRule)

    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 \nDeploymentRequest

    \n

    A request to deploy a workflow run to an environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    currentUserCanApprove (Boolean!)

    Whether or not the current user can approve the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    environment (Environment!)

    The target environment of the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    reviewers (DeploymentReviewerConnection!)

    The teams or users that can review 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

    waitTimer (Int!)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    waitTimerStartedAt (DateTime)

    The wait timer in minutes configured in the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentRequestConnection

    \n

    The connection type for DeploymentRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentRequestEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentRequest])

    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 \nDeploymentRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentRequest)

    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 \nDeploymentReview

    \n

    A deployment review.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    comment (String!)

    The comment the user left.

    \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

    environments (EnvironmentConnection!)

    The environments approved or rejected.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DeploymentReviewState!)

    The decision of the user.

    \n\n\n\n\n\n\n\n\n\n\n\n

    user (User!)

    The user that reviewed the deployment.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDeploymentReviewConnection

    \n

    The connection type for DeploymentReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReview])

    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 \nDeploymentReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReview)

    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 \nDeploymentReviewerConnection

    \n

    The connection type for DeploymentReviewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DeploymentReviewerEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DeploymentReviewer])

    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 \nDeploymentReviewerEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DeploymentReviewer)

    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 \nDeploymentStatus

    \n

    Describes the status of a given deployment attempt.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nDeploymentStatusConnection

    \n

    The connection type for DeploymentStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nDeploymentStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nDisconnectedEvent

    \n

    Represents adisconnectedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nDiscussion

    \n

    A discussion in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    answer (DiscussionComment)

    The comment chosen as this discussion's answer, if any.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenAt (DateTime)

    The time when a user chose this discussion's answer, if answered.

    \n\n\n\n\n\n\n\n\n\n\n\n

    answerChosenBy (Actor)

    The user who chose this discussion's answer, if answered.

    \n\n\n\n\n\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!)

    The main text of the discussion post.

    \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

    category (DiscussionCategory!)

    The category for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    comments (DiscussionCommentConnection!)

    The replies to the 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

    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

    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

    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

    number (Int!)

    The number identifying this discussion within the repository.

    \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 path for this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    title (String!)

    The title of this 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The 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

    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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \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 \nDiscussionCategory

    \n

    A category for discussions in a repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    description (String)

    A description of this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emoji (String!)

    An emoji representing this category.

    \n\n\n\n\n\n\n\n\n\n\n\n

    emojiHTML (HTML!)

    This category's emoji rendered as HTML.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isAnswerable (Boolean!)

    Whether or not discussions in this category support choosing an answer with the markDiscussionCommentAsAnswer mutation.

    \n\n\n\n\n\n\n\n\n\n\n\n

    name (String!)

    The name of this category.

    \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

    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 \nDiscussionCategoryConnection

    \n

    The connection type for DiscussionCategory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCategoryEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionCategory])

    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 \nDiscussionCategoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionCategory)

    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 \nDiscussionComment

    \n

    A comment on a discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    deletedAt (DateTime)

    The time when this replied-to comment was deleted.

    \n\n\n\n\n\n\n\n\n\n\n\n

    discussion (Discussion)

    The discussion this comment was created in.

    \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

    isAnswer (Boolean!)

    Has this comment been chosen as the answer of its discussion?.

    \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

    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

    replies (DiscussionCommentConnection!)

    The threaded replies to this comment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    replyTo (DiscussionComment)

    The discussion comment this comment is a reply to.

    \n\n\n\n\n\n\n\n\n\n\n\n

    resourcePath (URI!)

    The path for this discussion 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

    upvoteCount (Int!)

    Number of upvotes that this subject has received.

    \n\n\n\n\n\n\n\n\n\n\n\n

    url (URI!)

    The URL for this discussion 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

    viewerCanMarkAsAnswer (Boolean!)

    Can the current user mark this comment as an answer?.

    \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

    viewerCanUnmarkAsAnswer (Boolean!)

    Can the current user unmark this comment as an answer?.

    \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

    viewerCanUpvote (Boolean!)

    Whether or not the current user can add or remove an upvote on this subject.

    \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

    viewerHasUpvoted (Boolean!)

    Whether or not the current user has already upvoted this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nDiscussionCommentConnection

    \n

    The connection type for DiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionCommentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([DiscussionComment])

    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 \nDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (DiscussionComment)

    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 \nDiscussionConnection

    \n

    The connection type for Discussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([DiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Discussion])

    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 \nDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Discussion)

    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 \nEnterprise

    \n

    An account to manage multiple organizations with consolidated policy and billing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorEdge

    \n

    A User who is an administrator of an enterprise.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseAdministratorInvitation

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseAdministratorInvitationConnection

    \n

    The connection type for EnterpriseAdministratorInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseAdministratorInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseBillingInfo

    \n

    Enterprise billing information visible to enterprise billing managers and owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseIdentityProvider

    \n

    An identity provider configured to provision identities for an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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 \nEnterpriseMemberConnection

    \n

    The connection type for EnterpriseMember.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseMemberEdge

    \n

    A User who is a member of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOrganizationMembershipConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOrganizationMembershipEdge

    \n

    An enterprise organization that a user is a member of.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseOutsideCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOutsideCollaboratorEdge

    \n

    A User who is an outside collaborator of an enterprise through one or more organizations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseOwnerInfo

    \n

    Enterprise information only visible to enterprise owners.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base 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

    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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isUpdatingDefaultRepositoryPermission (Boolean!)

    Whether or not the base 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 \nEnterprisePendingCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingCollaboratorEdge

    \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

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterprisePendingMemberInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterprisePendingMemberInvitationEdge

    \n

    An invitation to be a member in an enterprise organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nEnterpriseRepositoryInfo

    \n

    A subset of repository information queryable from an enterprise.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 or internal.

    \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 \nEnterpriseRepositoryInfoConnection

    \n

    The connection type for EnterpriseRepositoryInfo.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseRepositoryInfoEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerInstallation

    \n

    An Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccount

    \n

    A user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountConnection

    \n

    The connection type for EnterpriseServerUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountEmail

    \n

    An email belonging to a user account on an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountEmailConnection

    \n

    The connection type for EnterpriseServerUserAccountEmail.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountEmailEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseServerUserAccountsUpload

    \n

    A user accounts upload from an Enterprise Server installation.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseServerUserAccountsUploadConnection

    \n

    The connection type for EnterpriseServerUserAccountsUpload.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseServerUserAccountsUploadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnterpriseUserAccount

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nEnterpriseUserAccountConnection

    \n

    The connection type for EnterpriseUserAccount.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nEnterpriseUserAccountEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nEnvironment

    \n

    An environment.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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

    name (String!)

    The name of the environment.

    \n\n\n\n\n\n\n\n\n\n\n\n

    protectionRules (DeploymentProtectionRuleConnection!)

    The protection rules defined for this environment.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 \nEnvironmentConnection

    \n

    The connection type for Environment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([EnvironmentEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Environment])

    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 \nEnvironmentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (Environment)

    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 \nExternalIdentity

    \n

    An external identity provisioned by SAML SSO or SCIM.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nExternalIdentityConnection

    \n

    The connection type for ExternalIdentity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nExternalIdentityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nExternalIdentitySamlAttributes

    \n

    SAML attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nExternalIdentityScimAttributes

    \n

    SCIM attributes for the External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nFollowerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nFollowingConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGenericHovercardContext

    \n

    A generic hovercard context with a message and icon.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \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 \nGist

    \n

    A Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistComment

    \n

    Represents a comment on an Gist.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGistCommentConnection

    \n

    The connection type for GistComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistConnection

    \n

    The connection type for Gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGistEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGistFile

    \n

    A file in a gist.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nGitActor

    \n

    Represents an actor in a Git commit (ie. an author or committer).

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nGitActorConnection

    \n

    The connection type for GitActor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nGitActorEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nGitHubMetadata

    \n

    Represents information about the GitHub instance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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

    isPasswordAuthenticationVerifiable (Boolean!)

    Whether or not users are verified.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nGpgSignature

    \n

    Represents a GPG signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefDeletedEvent

    \n

    Represents ahead_ref_deletedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nHeadRefForcePushedEvent

    \n

    Represents ahead_ref_force_pushedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nHeadRefRestoredEvent

    \n

    Represents ahead_ref_restoredevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nHovercard

    \n

    Detail needed to display a hovercard for a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIpAllowListEntry

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIpAllowListEntryConnection

    \n

    The connection type for IpAllowListEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIpAllowListEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssue

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isPinned (Boolean)

    Indicates whether or not this issue is currently pinned to the repository issues list.

    \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

    titleHTML (String!)

    Identifies the issue title rendered to HTML.

    \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 \nIssueComment

    \n

    Represents a comment on an Issue.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueCommentConnection

    \n

    The connection type for IssueComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueConnection

    \n

    The connection type for Issue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueContributionsByRepository

    \n

    This aggregates issues opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTemplate

    \n

    A repository issue template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineConnection

    \n

    The connection type for IssueTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nIssueTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nIssueTimelineItemsConnection

    \n

    The connection type for IssueTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nIssueTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nJoinedGitHubContribution

    \n

    Represents a user signing up for a GitHub account.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLabel

    \n

    A label for categorizing Issues, Pull Requests, Milestones, or Discussions with a given Repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLabelConnection

    \n

    The connection type for Label.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLabelEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLabeledEvent

    \n

    Represents alabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nLanguage

    \n

    Represents a given language found in repositories.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \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 \nLanguageConnection

    \n

    A list of languages associated with the parent.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nLanguageEdge

    \n

    Represents the language of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nLicense

    \n

    A repository's open source license.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nLicenseRule

    \n

    Describes a License's conditions, permissions, and limitations.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nLockedEvent

    \n

    Represents alockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMannequin

    \n

    A placeholder user for attribution of imported data on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    claimant (User)

    The user that has claimed the data attributed to this mannequin.

    \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

    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 \nMarkedAsDuplicateEvent

    \n

    Represents amarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposClearAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.clear event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposDisableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMembersCanDeleteReposEnableAuditEntry

    \n

    Audit log entry for a members_can_delete_repos.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMentionedEvent

    \n

    Represents amentionedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nMergedEvent

    \n

    Represents amergedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nMilestone

    \n

    Represents a Milestone object on a given repository.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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!)

    Identifies 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 \nMilestoneConnection

    \n

    The connection type for Milestone.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMilestoneEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nMilestonedEvent

    \n

    Represents amilestonedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nMovedColumnsInProjectEvent

    \n

    Represents amoved_columns_in_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOauthApplicationCreateAuditEntry

    \n

    Audit log entry for a oauth_application.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddBillingManagerAuditEntry

    \n

    Audit log entry for a org.add_billing_manager.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgAddMemberAuditEntry

    \n

    Audit log entry for a org.add_member.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgBlockUserAuditEntry

    \n

    Audit log entry for a org.block_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a org.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgCreateAuditEntry

    \n

    Audit log entry for a org.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.disable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableSamlAuditEntry

    \n

    Audit log entry for a org.disable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgDisableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.disable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableOauthAppRestrictionsAuditEntry

    \n

    Audit log entry for a org.enable_oauth_app_restrictions event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableSamlAuditEntry

    \n

    Audit log entry for a org.enable_saml event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgEnableTwoFactorRequirementAuditEntry

    \n

    Audit log entry for a org.enable_two_factor_requirement event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteMemberAuditEntry

    \n

    Audit log entry for a org.invite_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgInviteToBusinessAuditEntry

    \n

    Audit log entry for a org.invite_to_business event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessApprovedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_approved event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessDeniedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_denied event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgOauthAppAccessRequestedAuditEntry

    \n

    Audit log entry for a org.oauth_app_access_requested event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveBillingManagerAuditEntry

    \n

    Audit log entry for a org.remove_billing_manager event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveMemberAuditEntry

    \n

    Audit log entry for a org.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRemoveOutsideCollaboratorAuditEntry

    \n

    Audit log entry for a org.remove_outside_collaborator event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgRestoreMemberAuditEntry

    \n

    Audit log entry for a org.restore_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 assignments 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 \nOrgRestoreMemberMembershipOrganizationAuditEntryData

    \n

    Metadata for an organization membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipRepositoryAuditEntryData

    \n

    Metadata for a repository membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgRestoreMemberMembershipTeamAuditEntryData

    \n

    Metadata for a team membership for org.restore_member actions.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrgUnblockUserAuditEntry

    \n

    Audit log entry for a org.unblock_user.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateDefaultRepositoryPermissionAuditEntry

    \n

    Audit log entry for a org.update_default_repository_permission.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 base repository permission level for the organization.

    \n\n\n\n\n\n\n\n\n\n\n\n

    permissionWas (OrgUpdateDefaultRepositoryPermissionAuditEntryPermission)

    The former base 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 \nOrgUpdateMemberAuditEntry

    \n

    Audit log entry for a org.update_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryCreationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_creation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrgUpdateMemberRepositoryInvitationPermissionAuditEntry

    \n

    Audit log entry for a org.update_member_repository_invitation_permission event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganization

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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

    ipAllowListForInstalledAppsEnabledSetting (IpAllowListForInstalledAppsEnabledSettingValue!)

    The setting value for whether the organization has IP allow list configuration for installed GitHub Apps enabled.

    \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

    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

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    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

    viewerIsAMember (Boolean!)

    Viewer is an active member of this 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 \nOrganizationAuditEntryConnection

    \n

    The connection type for OrganizationAuditEntry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationAuditEntryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationConnection

    \n

    The connection type for Organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationIdentityProvider

    \n

    An Identity Provider configured to provision SAML and SCIM identities for Organizations.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    membersOnly (Boolean)

    \n

    Filter to external identities with valid org membership only.

    \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

    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 \nOrganizationInvitation

    \n

    An Invitation for a user to an organization.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationInvitationConnection

    \n

    The connection type for OrganizationInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nOrganizationMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationMemberEdge

    \n

    Represents a user within an organization.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nOrganizationTeamsHovercardContext

    \n

    An organization teams hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nOrganizationsHovercardContext

    \n

    An organization list hovercard context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPageInfo

    \n

    Information about pagination in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPermissionSource

    \n

    A level of permission and source for a user's access to a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nPinnableItemConnection

    \n

    The connection type for PinnableItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnableItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPinnedDiscussion

    \n

    A Pinned Discussion is a discussion pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussion (Discussion!)

    The discussion that was pinned.

    \n\n\n\n\n\n\n\n\n\n\n\n

    gradientStopColors ([String!]!)

    Color stops of the chosen gradient.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pattern (PinnedDiscussionPattern!)

    Background texture pattern.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedBy (Actor!)

    The actor that pinned this discussion.

    \n\n\n\n\n\n\n\n\n\n\n\n

    preconfiguredGradient (PinnedDiscussionGradient)

    Preconfigured background gradient option.

    \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

    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 \nPinnedDiscussionConnection

    \n

    The connection type for PinnedDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([PinnedDiscussionEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([PinnedDiscussion])

    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 \nPinnedDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 (PinnedDiscussion)

    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 \nPinnedEvent

    \n

    Represents apinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nPinnedIssue

    \n

    A Pinned Issue is a issue pinned to a repository's index page.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueConnection

    \n

    The connection type for PinnedIssue.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPinnedIssueEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPrivateRepositoryForkingDisableAuditEntry

    \n

    Audit log entry for a private_repository_forking.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPrivateRepositoryForkingEnableAuditEntry

    \n

    Audit log entry for a private_repository_forking.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProfileItemShowcase

    \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

    Fields

    \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 \nProject

    \n

    Projects manage issues, pull requests and notes within a project owner.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCard

    \n

    A card in a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectCardConnection

    \n

    The connection type for ProjectCard.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectCardEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectColumn

    \n

    A column inside a project.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nProjectColumnConnection

    \n

    The connection type for ProjectColumn.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectColumnEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectConnection

    \n

    A list of projects associated with the owner.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nProjectEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nProjectProgress

    \n

    Project progress stats.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKey

    \n

    A user's public key.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPublicKeyConnection

    \n

    The connection type for PublicKey.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPublicKeyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequest

    \n

    A repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeRequest (AutoMergeRequest)

    Returns the auto-merge request object if one exists for this pull request.

    \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

    closingIssuesReferences (IssueConnection)

    List of issues that were may be closed by 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

    orderBy (IssueOrder)

    \n

    Ordering options for issues returned from the connection.

    \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

    titleHTML (HTML!)

    Identifies the pull request title rendered to HTML.

    \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

    viewerCanDisableAutoMerge (Boolean!)

    Whether or not the viewer can disable auto-merge.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerCanEnableAutoMerge (Boolean!)

    Whether or not the viewer can enable auto-merge.

    \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

    viewerLatestReview (PullRequestReview)

    The latest review given from the viewer.

    \n\n\n\n\n\n\n\n\n\n\n\n

    viewerLatestReviewRequest (ReviewRequest)

    The person who has requested the viewer for review on this pull request.

    \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 \nPullRequestChangedFile

    \n

    A file changed in a pull request.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileConnection

    \n

    The connection type for PullRequestChangedFile.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestChangedFileEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestCommit

    \n

    Represents a Git commit part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitCommentThread

    \n

    Represents a commit comment thread part of a pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestCommitConnection

    \n

    The connection type for PullRequestCommit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestCommitEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestConnection

    \n

    The connection type for PullRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestContributionsByRepository

    \n

    This aggregates pull requests opened by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReview

    \n

    A review object for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewComment

    \n

    A review comment associated with a given repository pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestReviewCommentConnection

    \n

    The connection type for PullRequestReviewComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewConnection

    \n

    The connection type for PullRequestReview.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewContributionsByRepository

    \n

    This aggregates pull request reviews made by a user within one repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestReviewThread

    \n

    A threaded list of comments for a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 (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 \nPullRequestReviewThreadConnection

    \n

    Review comment threads for a pull request review.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestReviewThreadEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestRevisionMarker

    \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

    Fields

    \n \n\n\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 \nPullRequestTemplate

    \n

    A repository pull request template.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    filename (String)

    The filename of the template.

    \n\n\n\n\n\n\n\n\n\n\n\n

    repository (Repository!)

    The repository the template belongs to.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nPullRequestTimelineConnection

    \n

    The connection type for PullRequestTimelineItem.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPullRequestTimelineItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPullRequestTimelineItemsConnection

    \n

    The connection type for PullRequestTimelineItems.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nPullRequestTimelineItemsEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nPush

    \n

    A Git push.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nPushAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nPushAllowanceConnection

    \n

    The connection type for PushAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nPushAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRateLimit

    \n

    Represents the client's rate limit.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReactingUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReactingUserEdge

    \n

    Represents a user that's made a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReaction

    \n

    An emoji reaction to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionConnection

    \n

    A list of reactions that have been left on the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReactionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReactionGroup

    \n

    A group of emoji reactions to a particular piece of content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    reactors (ReactorConnection!)

    Reactors 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

    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

    Deprecation notice

    \n

    users is deprecated.

    Reactors can now be mannequins, bots, and organizations. Use the reactors field instead. Removal on 2021-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\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 \nReactorConnection

    \n

    The connection type for Reactor.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 ([ReactorEdge])

    A list of edges.

    \n\n\n\n\n\n\n\n\n\n\n\n

    nodes ([Reactor])

    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 \nReactorEdge

    \n

    Represents an author of a reaction.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 (Reactor!)

    The author of the reaction.

    \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 \nReadyForReviewEvent

    \n

    Represents aready_for_reviewevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRef

    \n

    Represents a Git reference.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRefConnection

    \n

    The connection type for Ref.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRefEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRefUpdateRule

    \n

    A ref update rules for a viewer.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    requiresCodeOwnerReviews (Boolean!)

    Are reviews from code owners required to update matching branches.

    \n\n\n\n\n\n\n\n\n\n\n\n

    requiresConversationResolution (Boolean!)

    Are conversations required to be resolved before merging.

    \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

    viewerAllowedToDismissReviews (Boolean!)

    Is the viewer allowed to dismiss reviews.

    \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 \nReferencedEvent

    \n

    Represents areferencedevent on a given ReferencedSubject.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRelease

    \n

    A release contains the content for a release.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 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

    isLatest (Boolean!)

    Whether or not the release is the latest releast.

    \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

    mentions (UserConnection)

    A list of users mentioned in the release description.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 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

    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

    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

    repository (Repository!)

    The repository that the release belongs to.

    \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

    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

    tagCommit (Commit)

    The tag commit for this release.

    \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

    viewerCanReact (Boolean!)

    Can user react to this subject.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n\n
    \n
    \n

    \n \n \nReleaseAsset

    \n

    A release asset contains the content for a release asset.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReleaseAssetConnection

    \n

    The connection type for ReleaseAsset.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseAssetEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReleaseConnection

    \n

    The connection type for Release.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReleaseEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRemovedFromProjectEvent

    \n

    Represents aremoved_from_projectevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRenamedTitleEvent

    \n

    Represents arenamedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReopenedEvent

    \n

    Represents areopenedevent on any Closable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nRepoAccessAuditEntry

    \n

    Audit log entry for a repo.access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddMemberAuditEntry

    \n

    Audit log entry for a repo.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoAddTopicAuditEntry

    \n

    Audit log entry for a repo.add_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoArchivedAuditEntry

    \n

    Audit log entry for a repo.archived event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoChangeMergeSettingAuditEntry

    \n

    Audit log entry for a repo.change_merge_setting event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.disable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.disable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigDisableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.disable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.enable_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableCollaboratorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_collaborators_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableContributorsOnlyAuditEntry

    \n

    Audit log entry for a repo.config.enable_contributors_only event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigEnableSockpuppetDisallowedAuditEntry

    \n

    Audit log entry for a repo.config.enable_sockpuppet_disallowed event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigLockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.lock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoConfigUnlockAnonymousGitAccessAuditEntry

    \n

    Audit log entry for a repo.config.unlock_anonymous_git_access event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoCreateAuditEntry

    \n

    Audit log entry for a repo.create event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 network.

    \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 \nRepoDestroyAuditEntry

    \n

    Audit log entry for a repo.destroy event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveMemberAuditEntry

    \n

    Audit log entry for a repo.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepoRemoveTopicAuditEntry

    \n

    Audit log entry for a repo.remove_topic event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepository

    \n

    A repository contains the content for a project.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    autoMergeAllowed (Boolean!)

    Whether or not Auto-merge can be enabled on pull requests in this repository.

    \n\n\n\n\n\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

    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

    discussion (Discussion)

    Returns a single discussion 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 discussion to be returned.

    \n\n
    \n\n
    \n\n\n

    discussionCategories (DiscussionCategoryConnection!)

    A list of discussion categories that are available 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

    first (Int)

    \n

    Returns the first n elements 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

    discussions (DiscussionConnection!)

    A list of discussions 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

    categoryId (ID)

    \n

    Only include discussions that belong to the category with this ID.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \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

    environment (Environment)

    Returns a single active environment from the current repository by name.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    name (String!)

    \n

    The name of the environment to be returned.

    \n\n
    \n\n
    \n\n\n

    environments (EnvironmentConnection!)

    A list of environments that are 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\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

    forkingAllowed (Boolean!)

    Whether this repository allows forks.

    \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

    hasAnonymousAccessEnabled (Boolean!)

    Indicates if the repository has anonymous Git read access feature enabled.

    \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 or internal.

    \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

    latestRelease (Release)

    Get the latest release for the repository if one exists.

    \n\n\n\n\n\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

    parent (Repository)

    The repository parent, if this is a fork.

    \n\n\n\n\n\n\n\n\n\n\n\n

    pinnedDiscussions (PinnedDiscussionConnection!)

    A list of discussions that have been pinned 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\n\n

    pinnedIssues (PinnedIssueConnection)

    A list of pinned issues 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

    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

    pullRequestTemplates ([PullRequestTemplate!])

    Returns a list of pull request templates associated to the repository.

    \n\n\n\n\n\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

    visibility (RepositoryVisibility!)

    Indicates the repository's visibility level.

    \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 \nRepositoryCollaboratorConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryCollaboratorEdge

    \n

    Represents a user who is a collaborator of a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryConnection

    \n

    A list of repositories owned by the subject.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nRepositoryContactLink

    \n

    A repository contact link.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nRepositoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryInvitation

    \n

    An invitation for a user to be added to a repository.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryInvitationConnection

    \n

    The connection type for RepositoryInvitation.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryInvitationEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryTopic

    \n

    A repository-topic connects a repository to a topic.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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 \nRepositoryTopicConnection

    \n

    The connection type for RepositoryTopic.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryTopicEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRepositoryVisibilityChangeDisableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.disable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVisibilityChangeEnableAuditEntry

    \n

    Audit log entry for a repository_visibility_change.enable event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nRepositoryVulnerabilityAlert

    \n

    A Dependabot alert for a repository with a dependency affected by a security vulnerability.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 dismissed?.

    \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 vulnerability.

    \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 \nRepositoryVulnerabilityAlertConnection

    \n

    The connection type for RepositoryVulnerabilityAlert.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nRepositoryVulnerabilityAlertEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nRestrictedContribution

    \n

    Represents a private contribution a user made on GitHub.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nReviewDismissalAllowance

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \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 \nReviewDismissalAllowanceConnection

    \n

    The connection type for ReviewDismissalAllowance.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewDismissalAllowanceEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewDismissedEvent

    \n

    Represents areview_dismissedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nReviewRequest

    \n

    A request for a user to review a pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestConnection

    \n

    The connection type for ReviewRequest.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nReviewRequestRemovedEvent

    \n

    Represents anreview_request_removedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewRequestedEvent

    \n

    Represents anreview_requestedevent on a given pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nReviewStatusHovercardContext

    \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

    Fields

    \n \n\n\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 \nSavedReply

    \n

    A Saved Reply is text a user can use to reply quickly.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSavedReplyConnection

    \n

    The connection type for SavedReply.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSavedReplyEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSearchResultItemConnection

    \n

    A list of results that matched against a search query.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    discussionCount (Int!)

    The number of discussions 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 \nSearchResultItemEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nSecurityAdvisory

    \n

    A GitHub Security Advisory.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    cvss (CVSS!)

    The CVSS associated with this advisory.

    \n\n\n\n\n\n\n\n\n\n\n\n

    cwes (CWEConnection!)

    CWEs 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

    first (Int)

    \n

    Returns the first n elements 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

    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

    notificationsPermalink (URI)

    The permalink for the advisory's dependabot alerts page.

    \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

    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 \nSecurityAdvisoryConnection

    \n

    The connection type for SecurityAdvisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityAdvisoryEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryIdentifier

    \n

    A GitHub Security Advisory Identifier.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackage

    \n

    An individual package.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryPackageVersion

    \n

    An individual package version.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityAdvisoryReference

    \n

    A GitHub Security Advisory Reference.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSecurityVulnerability

    \n

    An individual vulnerability within an Advisory.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nSecurityVulnerabilityConnection

    \n

    The connection type for SecurityVulnerability.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSecurityVulnerabilityEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSmimeSignature

    \n

    Represents an S/MIME signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nStargazerConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStargazerEdge

    \n

    Represents a user that's starred a repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStarredRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStarredRepositoryEdge

    \n

    Represents a starred repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatus

    \n

    Represents a commit status.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nStatusCheckRollup

    \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 Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nStatusCheckRollupContextConnection

    \n

    The connection type for StatusCheckRollupContext.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nStatusCheckRollupContextEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nStatusContext

    \n

    Represents an individual commit status context.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    isRequired (Boolean!)

    Whether this is required to pass before merging for a specific pull request.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    pullRequestId (ID)

    \n

    The id of the pull request this is required for.

    \n\n
    \n\n
    \n

    pullRequestNumber (Int)

    \n

    The number of the pull request this is required for.

    \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 \nSubmodule

    \n

    A pointer to a repository at a specific revision embedded inside another repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nSubmoduleConnection

    \n

    The connection type for Submodule.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nSubmoduleEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nSubscribedEvent

    \n

    Represents asubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nSuggestedReviewer

    \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

    Fields

    \n \n\n\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 \nTag

    \n

    Represents a Git tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeam

    \n

    A team of users in an organization.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddMemberAuditEntry

    \n

    Audit log entry for a team.add_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamAddRepositoryAuditEntry

    \n

    Audit log entry for a team.add_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamChangeParentTeamAuditEntry

    \n

    Audit log entry for a team.change_parent_team event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamConnection

    \n

    The connection type for Team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussion

    \n

    A team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionComment

    \n

    A comment on a team discussion.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamDiscussionCommentConnection

    \n

    The connection type for TeamDiscussionComment.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionCommentEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamDiscussionConnection

    \n

    The connection type for TeamDiscussion.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamDiscussionEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTeamMemberConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamMemberEdge

    \n

    Represents a user who is a member of a team.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRemoveMemberAuditEntry

    \n

    Audit log entry for a team.remove_member event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRemoveRepositoryAuditEntry

    \n

    Audit log entry for a team.remove_repository event.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTeamRepositoryConnection

    \n

    The connection type for Repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTeamRepositoryEdge

    \n

    Represents a team repository.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nTextMatch

    \n

    A text match within a search result.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTextMatchHighlight

    \n

    Represents a single highlight in a search result match.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nTopic

    \n

    A topic aggregates entities that are related to a subject.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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

    repositories (RepositoryConnection!)

    A list of 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

    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 \nTransferredEvent

    \n

    Represents atransferredevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nTree

    \n

    Represents a Git tree.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nTreeEntry

    \n

    Represents a Git tree entry.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnassignedEvent

    \n

    Represents anunassignedevent on any assignable object.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnknownSignature

    \n

    Represents an unknown signature on a Commit or Tag.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUnlabeledEvent

    \n

    Represents anunlabeledevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUnlockedEvent

    \n

    Represents anunlockedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnmarkedAsDuplicateEvent

    \n

    Represents anunmarked_as_duplicateevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\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 \nUnpinnedEvent

    \n

    Represents anunpinnedevent on a given issue or pull request.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUnsubscribedEvent

    \n

    Represents anunsubscribedevent on a given Subscribable.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\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 \nUser

    \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

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    canReceiveOrganizationEmailsWhenNotificationsRestricted (Boolean!)

    Could this user receive email notifications, if the organization had notification restrictions enabled?.

    \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 check.

    \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 (including) this time will be\ncounted. If omitted, defaults to the current time or one year from the\nprovided from argument.

    \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

    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

    isFollowingViewer (Boolean!)

    Whether or not this user is following the viewer. Inverse of viewer_is_following.

    \n\n\n\n\n\n\n\n\n\n\n\n

    isGitHubStar (Boolean!)

    Whether or not this user is a member of the GitHub Stars Program.

    \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

    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

    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

    followRenames (Boolean)

    \n

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    \n

    The default value is true.

    \n
    \n\n
    \n

    name (String!)

    \n

    Name of Repository to find.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussionComments (DiscussionCommentConnection!)

    Discussion comments this user has authored.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements from the list.

    \n\n
    \n\n
    \n

    last (Int)

    \n

    Returns the last n elements from the list.

    \n\n
    \n\n
    \n

    onlyAnswers (Boolean)

    \n

    Filter discussion comments to only those that were marked as the answer.

    \n

    The default value is false.

    \n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussion comments to only those in a specific repository.

    \n\n
    \n\n
    \n\n\n

    repositoryDiscussions (DiscussionConnection!)

    Discussions this user has started.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    answered (Boolean)

    \n

    Filter discussions to only those that have been answered or not. Defaults to\nincluding both answered and unanswered discussions.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 (DiscussionOrder)

    \n

    Ordering options for discussions returned from the connection.

    \n\n
    \n\n
    \n

    repositoryId (ID)

    \n

    Filter discussions to only those in a specific repository.

    \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

    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

    suspendedAt (DateTime)

    Identifies the date and time when the user was suspended.

    \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

    viewerIsFollowing (Boolean!)

    Whether or not this user is followed by the viewer. Inverse of is_following_viewer.

    \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 \nUserBlockedEvent

    \n

    Represents auser_blockedevent on a given user.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserConnection

    \n

    The connection type for User.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEdit

    \n

    An edit on user content.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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 \nUserContentEditConnection

    \n

    A list of edits to content.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserContentEditEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEdge

    \n

    Represents a user.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nUserEmailMetadata

    \n

    Email attributes from External Identity.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\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 \nUserStatus

    \n

    The user's description of what they're currently doing.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\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

    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 \nUserStatusConnection

    \n

    The connection type for UserStatus.

    \n
    \n\n
    \n \n \n \n

    Fields

    \n \n\n\n \n \n\n\n\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 \nUserStatusEdge

    \n

    An edge in a connection.

    \n
    \n\n
    \n \n \n \n

    Fields

    \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 \nViewerHovercardContext

    \n

    A hovercard context with a message describing how the viewer is related.

    \n
    \n\n
    \n \n \n \n

    \n \n \n

    Fields

    \n \n\n\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
    \n
    \n

    \n \n \nWorkflow

    \n

    A workflow contains meta information about an Actions workflow file.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\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

    name (String!)

    The name of the workflow.

    \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 \nWorkflowRun

    \n

    A workflow run.

    \n
    \n\n
    \n \n \n \n

    \n
      \n \n
    • \n Node\n
    • \n \n
    \n \n

    Fields

    \n \n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    NameDescription

    checkSuite (CheckSuite!)

    The check suite this workflow run belongs to.

    \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

    deploymentReviews (DeploymentReviewConnection!)

    The log of deployment reviews.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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

    pendingDeploymentRequests (DeploymentRequestConnection!)

    The pending deployment requests of all check runs in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n
    \n

    Arguments

    \n\n
    \n

    after (String)

    \n

    Returns the elements in the list that come after the specified cursor.

    \n\n
    \n\n
    \n

    before (String)

    \n

    Returns the elements in the list that come before the specified cursor.

    \n\n
    \n\n
    \n

    first (Int)

    \n

    Returns the first n elements 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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    runNumber (Int!)

    A number that uniquely identifies this workflow run in its parent workflow.

    \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 workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n

    workflow (Workflow!)

    The workflow executed in this workflow run.

    \n\n\n\n\n\n\n\n\n\n\n\n
    \n \n
    \n
    \n
    \n", "miniToc": [ { "contents": "\n ActorLocation", diff --git a/lib/graphql/static/schema-dotcom.json b/lib/graphql/static/schema-dotcom.json index 15cef0ec91..579af8d3fe 100644 --- a/lib/graphql/static/schema-dotcom.json +++ b/lib/graphql/static/schema-dotcom.json @@ -709,6 +709,15 @@ "href": "/graphql/reference/objects#repository", "description": "

    Lookup a given repository by the owner and repository name.

    ", "args": [ + { + "name": "followRenames", + "defaultValue": true, + "type": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean", + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    " + }, { "name": "name", "type": "String!", @@ -33956,6 +33965,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", @@ -37801,7 +37821,7 @@ "kind": "objects", "id": "projectnext", "href": "/graphql/reference/objects#projectnext", - "description": "

    New projects that manage issues, pull requests and drafts with tables and.

    ", + "description": "

    New projects that manage issues, pull requests and drafts using tables and boards.

    ", "implements": [ { "name": "Closable", @@ -38220,7 +38240,7 @@ "kind": "objects", "id": "projectnextitem", "href": "/graphql/reference/objects#projectnextitem", - "description": "

    An item in a Memex project.

    ", + "description": "

    An item within a new Project.

    ", "implements": [ { "name": "Node", @@ -38408,7 +38428,7 @@ "kind": "objects", "id": "projectnextitemfieldvalue", "href": "/graphql/reference/objects#projectnextitemfieldvalue", - "description": "

    An value of a field in an item of Memex project.

    ", + "description": "

    An value of a field in an item of a new Project.

    ", "implements": [ { "name": "Node", @@ -61085,6 +61105,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", @@ -65164,6 +65195,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", diff --git a/lib/graphql/static/schema-ghae.json b/lib/graphql/static/schema-ghae.json index 207615e957..38b916aac3 100644 --- a/lib/graphql/static/schema-ghae.json +++ b/lib/graphql/static/schema-ghae.json @@ -448,6 +448,15 @@ "href": "/graphql/reference/objects#repository", "description": "

    Lookup a given repository by the owner and repository name.

    ", "args": [ + { + "name": "followRenames", + "defaultValue": true, + "type": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean", + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    " + }, { "name": "name", "type": "String!", @@ -30930,6 +30939,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", @@ -54732,6 +54752,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", @@ -58023,6 +58054,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", diff --git a/lib/graphql/static/schema-ghec.json b/lib/graphql/static/schema-ghec.json index 15cef0ec91..579af8d3fe 100644 --- a/lib/graphql/static/schema-ghec.json +++ b/lib/graphql/static/schema-ghec.json @@ -709,6 +709,15 @@ "href": "/graphql/reference/objects#repository", "description": "

    Lookup a given repository by the owner and repository name.

    ", "args": [ + { + "name": "followRenames", + "defaultValue": true, + "type": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean", + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    " + }, { "name": "name", "type": "String!", @@ -33956,6 +33965,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", @@ -37801,7 +37821,7 @@ "kind": "objects", "id": "projectnext", "href": "/graphql/reference/objects#projectnext", - "description": "

    New projects that manage issues, pull requests and drafts with tables and.

    ", + "description": "

    New projects that manage issues, pull requests and drafts using tables and boards.

    ", "implements": [ { "name": "Closable", @@ -38220,7 +38240,7 @@ "kind": "objects", "id": "projectnextitem", "href": "/graphql/reference/objects#projectnextitem", - "description": "

    An item in a Memex project.

    ", + "description": "

    An item within a new Project.

    ", "implements": [ { "name": "Node", @@ -38408,7 +38428,7 @@ "kind": "objects", "id": "projectnextitemfieldvalue", "href": "/graphql/reference/objects#projectnextitemfieldvalue", - "description": "

    An value of a field in an item of Memex project.

    ", + "description": "

    An value of a field in an item of a new Project.

    ", "implements": [ { "name": "Node", @@ -61085,6 +61105,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", @@ -65164,6 +65195,17 @@ "kind": "objects", "href": "/graphql/reference/objects#repository", "arguments": [ + { + "name": "followRenames", + "defaultValue": true, + "description": "

    Follow repository renames. If disabled, a repository referenced by its old name will return an error.

    ", + "type": { + "name": "Boolean", + "id": "boolean", + "kind": "scalars", + "href": "/graphql/reference/scalars#boolean" + } + }, { "name": "name", "description": "

    Name of Repository to find.

    ", diff --git a/lib/handle-exceptions.js b/lib/handle-exceptions.js index 0c9c74c4ef..a6ce0adc57 100644 --- a/lib/handle-exceptions.js +++ b/lib/handle-exceptions.js @@ -9,10 +9,20 @@ process.on('uncaughtException', async (err) => { } console.error(err) - await FailBot.report(err) + try { + await FailBot.report(err) + } catch (failBotError) { + console.warn('Even sending the uncaughtException error to FailBot failed!') + console.error(failBotError) + } }) process.on('unhandledRejection', async (err) => { console.error(err) - await FailBot.report(err) + try { + await FailBot.report(err) + } catch (failBotError) { + console.warn('Even sending the unhandledRejection error to FailBot failed!') + console.error(failBotError) + } }) diff --git a/lib/page.js b/lib/page.js index 4afc1c6370..d16e543ee4 100644 --- a/lib/page.js +++ b/lib/page.js @@ -250,18 +250,16 @@ class Page { }) } - // set a flag so layout knows whether to render a mac/windows/linux switcher element - this.includesPlatformSpecificContent = - html.includes('extended-markdown mac') || - html.includes('extended-markdown windows') || - html.includes('extended-markdown linux') - this.detectedPlatforms = [ - html.includes('extended-markdown mac') && 'mac', - html.includes('extended-markdown windows') && 'windows', - html.includes('extended-markdown linux') && 'linux', + (html.includes('extended-markdown mac') || html.includes('platform-mac')) && 'mac', + (html.includes('extended-markdown windows') || html.includes('platform-windows')) && + 'windows', + (html.includes('extended-markdown linux') || html.includes('platform-linux')) && 'linux', ].filter(Boolean) + // set a flag so layout knows whether to render a mac/windows/linux switcher element + this.includesPlatformSpecificContent = this.detectedPlatforms.length > 0 + return html } diff --git a/lib/patterns.js b/lib/patterns.js index 221000cd04..72c0624f0c 100644 --- a/lib/patterns.js +++ b/lib/patterns.js @@ -28,7 +28,7 @@ export const hasLiquid = /[{{][{%]/ export const dataReference = /{% ?data\s(?:early-access\.)?(?:reusables|variables|ui)\..*?%}/gm export const imagePath = /\/?assets\/images\/.*?\.(png|svg|gif|pdf|ico|jpg|jpeg)/gi export const homepagePath = /^\/\w{2}$/ // /en, /ja /cn -export const multipleSlashes = /^\/{2,}/ +export const multipleSlashes = /^(\/|\\){2,}/ export const assetPaths = /\/(?:javascripts|stylesheets|assets|node_modules|dist|_next)\// export const oldApiPath = /\/v[34]\/(?!guides|overview).+?\/.+/ export const staticRedirect = // diff --git a/lib/rest/static/decorated/api.github.com.json b/lib/rest/static/decorated/api.github.com.json index 6d56de30c6..fa38d8fd90 100644 --- a/lib/rest/static/decorated/api.github.com.json +++ b/lib/rest/static/decorated/api.github.com.json @@ -38237,13 +38237,13 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://api.github.com/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", - "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://api.github.com/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " + "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://api.github.com/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", + "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://api.github.com/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " }, { "lang": "JavaScript", - "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", - "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " + "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ],\n checks: [\n {\n context: 'context',\n app_id: 'app_id'\n }\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", + "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ],\n    checks: [\n      {\n        context: 'context',\n        app_id: 'app_id'\n      }\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " } ], "summary": "Update branch protection", @@ -38279,15 +38279,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -38315,14 +38373,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -38812,15 +38953,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -38848,14 +39047,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -49251,7 +49533,7 @@ "html": "
    await octokit.request('GET /repos/{owner}/{repo}/codespaces', {\n  owner: 'octocat',\n  repo: 'hello-world'\n})\n
    " } ], - "summary": "List codespaces in a Repository for the authenticated user", + "summary": "List codespaces in a repository for the authenticated user", "description": "Lists the codespaces associated to a specified repository and the authenticated user.\n\nYou must authenticate using an access token with the `codespace` scope to use this endpoint.", "tags": [ "codespaces" @@ -49278,7 +49560,7 @@ "httpStatusCode": "200", "httpStatusMessage": "OK", "description": "Response", - "payload": "
    {\n  \"total_count\": 3,\n  \"codespaces\": [\n    {\n      \"id\": 1,\n      \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n      \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n      \"owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"billable_owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"repository\": {\n        \"id\": 1296269,\n        \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n        \"name\": \"Hello-World\",\n        \"full_name\": \"octocat/Hello-World\",\n        \"owner\": {\n          \"login\": \"octocat\",\n          \"id\": 1,\n          \"node_id\": \"MDQ6VXNlcjE=\",\n          \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/octocat\",\n          \"html_url\": \"https://github.com/octocat\",\n          \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n          \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n          \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n          \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"private\": false,\n        \"html_url\": \"https://github.com/octocat/Hello-World\",\n        \"description\": \"This your first repo!\",\n        \"fork\": false,\n        \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n        \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n        \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n        \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n        \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n        \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n        \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n        \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n        \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n        \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n        \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n        \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n        \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n        \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n        \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n        \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n        \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n        \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n        \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n        \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n        \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n        \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n        \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n        \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n        \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n        \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n        \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n        \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n        \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n        \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n        \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n        \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n        \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n        \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n        \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n        \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n        \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n        \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n        \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n      },\n      \"machine\": {\n        \"name\": \"standardLinux\",\n        \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n        \"operating_system\": \"linux\",\n        \"storage_in_bytes\": 68719476736,\n        \"memory_in_bytes\": 8589934592,\n        \"cpus\": 4\n      },\n      \"prebuild\": false,\n      \"created_at\": \"2021-10-14T00:53:30-06:00\",\n      \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n      \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n      \"state\": \"Available\",\n      \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n      \"git_status\": {\n        \"ahead\": 0,\n        \"behind\": 0,\n        \"has_unpushed_changes\": false,\n        \"has_uncommitted_changes\": false,\n        \"ref\": \"main\"\n      },\n      \"location\": \"WestUs2\",\n      \"idle_timeout_minutes\": 60,\n      \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n      \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n      \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n      \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n      \"recent_folders\": []\n    },\n    {\n      \"id\": 1,\n      \"name\": \"monalisa-octocat-hello-world-3f89ada1j3\",\n      \"environment_id\": \"526ce4d7-46da-494f-a4f9-cfd25b818719\",\n      \"owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"billable_owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"repository\": {\n        \"id\": 1296269,\n        \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n        \"name\": \"Hello-World\",\n        \"full_name\": \"octocat/Hello-World\",\n        \"owner\": {\n          \"login\": \"octocat\",\n          \"id\": 1,\n          \"node_id\": \"MDQ6VXNlcjE=\",\n          \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/octocat\",\n          \"html_url\": \"https://github.com/octocat\",\n          \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n          \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n          \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n          \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"private\": false,\n        \"html_url\": \"https://github.com/octocat/Hello-World\",\n        \"description\": \"This your first repo!\",\n        \"fork\": false,\n        \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n        \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n        \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n        \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n        \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n        \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n        \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n        \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n        \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n        \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n        \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n        \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n        \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n        \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n        \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n        \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n        \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n        \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n        \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n        \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n        \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n        \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n        \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n        \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n        \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n        \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n        \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n        \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n        \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n        \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n        \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n        \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n        \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n        \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n        \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n        \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n        \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n        \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n        \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n      },\n      \"machine\": {\n        \"name\": \"standardLinux\",\n        \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n        \"operating_system\": \"linux\",\n        \"storage_in_bytes\": 68719476736,\n        \"memory_in_bytes\": 8589934592,\n        \"cpus\": 4\n      },\n      \"prebuild\": false,\n      \"created_at\": \"2021-10-14T00:53:30-06:00\",\n      \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n      \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n      \"state\": \"Available\",\n      \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3\",\n      \"git_status\": {\n        \"ahead\": 0,\n        \"behind\": 0,\n        \"has_unpushed_changes\": false,\n        \"has_uncommitted_changes\": false,\n        \"ref\": \"main\"\n      },\n      \"location\": \"WestUs2\",\n      \"idle_timeout_minutes\": 60,\n      \"web_url\": \"https://monalisa-octocat-hello-world-3f89ada1j3.github.dev\",\n      \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines\",\n      \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start\",\n      \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop\",\n      \"recent_folders\": []\n    },\n    {\n      \"id\": 1,\n      \"name\": \"monalisa-octocat-hello-world-f8adfad99a\",\n      \"environment_id\": \"6ac8cd6d-a2d0-4ae3-8cea-e135059264df\",\n      \"owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"billable_owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"repository\": {\n        \"id\": 1296269,\n        \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n        \"name\": \"Hello-World\",\n        \"full_name\": \"octocat/Hello-World\",\n        \"owner\": {\n          \"login\": \"octocat\",\n          \"id\": 1,\n          \"node_id\": \"MDQ6VXNlcjE=\",\n          \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/octocat\",\n          \"html_url\": \"https://github.com/octocat\",\n          \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n          \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n          \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n          \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"private\": false,\n        \"html_url\": \"https://github.com/octocat/Hello-World\",\n        \"description\": \"This your first repo!\",\n        \"fork\": false,\n        \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n        \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n        \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n        \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n        \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n        \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n        \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n        \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n        \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n        \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n        \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n        \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n        \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n        \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n        \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n        \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n        \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n        \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n        \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n        \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n        \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n        \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n        \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n        \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n        \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n        \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n        \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n        \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n        \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n        \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n        \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n        \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n        \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n        \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n        \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n        \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n        \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n        \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n        \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n      },\n      \"machine\": {\n        \"name\": \"standardLinux\",\n        \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n        \"operating_system\": \"linux\",\n        \"storage_in_bytes\": 68719476736,\n        \"memory_in_bytes\": 8589934592,\n        \"cpus\": 4\n      },\n      \"prebuild\": false,\n      \"created_at\": \"2021-10-14T00:53:30-06:00\",\n      \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n      \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n      \"state\": \"Available\",\n      \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a\",\n      \"git_status\": {\n        \"ahead\": 0,\n        \"behind\": 0,\n        \"has_unpushed_changes\": false,\n        \"has_uncommitted_changes\": false,\n        \"ref\": \"main\"\n      },\n      \"location\": \"WestUs2\",\n      \"idle_timeout_minutes\": 60,\n      \"web_url\": \"https://monalisa-octocat-hello-world-f8adfad99a.github.dev\",\n      \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/machines\",\n      \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/start\",\n      \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop\",\n      \"recent_folders\": []\n    }\n  ]\n}\n
    " + "payload": "
    {\n  \"total_count\": 2,\n  \"codespaces\": [\n    {\n      \"id\": 1,\n      \"name\": \"monalisa-octocat-hello-world-g4wpq6h95q\",\n      \"environment_id\": \"26a7c758-7299-4a73-b978-5a92a7ae98a0\",\n      \"owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"billable_owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"repository\": {\n        \"id\": 1296269,\n        \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n        \"name\": \"Hello-World\",\n        \"full_name\": \"octocat/Hello-World\",\n        \"owner\": {\n          \"login\": \"octocat\",\n          \"id\": 1,\n          \"node_id\": \"MDQ6VXNlcjE=\",\n          \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/octocat\",\n          \"html_url\": \"https://github.com/octocat\",\n          \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n          \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n          \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n          \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"private\": false,\n        \"html_url\": \"https://github.com/octocat/Hello-World\",\n        \"description\": \"This your first repo!\",\n        \"fork\": false,\n        \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n        \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n        \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n        \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n        \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n        \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n        \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n        \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n        \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n        \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n        \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n        \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n        \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n        \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n        \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n        \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n        \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n        \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n        \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n        \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n        \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n        \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n        \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n        \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n        \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n        \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n        \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n        \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n        \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n        \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n        \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n        \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n        \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n        \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n        \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n        \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n        \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n        \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n        \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n      },\n      \"machine\": {\n        \"name\": \"standardLinux\",\n        \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n        \"operating_system\": \"linux\",\n        \"storage_in_bytes\": 68719476736,\n        \"memory_in_bytes\": 8589934592,\n        \"cpus\": 4\n      },\n      \"prebuild\": false,\n      \"created_at\": \"2021-10-14T00:53:30-06:00\",\n      \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n      \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n      \"state\": \"Available\",\n      \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q\",\n      \"git_status\": {\n        \"ahead\": 0,\n        \"behind\": 0,\n        \"has_unpushed_changes\": false,\n        \"has_uncommitted_changes\": false,\n        \"ref\": \"main\"\n      },\n      \"location\": \"WestUs2\",\n      \"idle_timeout_minutes\": 60,\n      \"web_url\": \"https://monalisa-octocat-hello-world-g4wpq6h95q.github.dev\",\n      \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/machines\",\n      \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/start\",\n      \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-g4wpq6h95q/stop\",\n      \"recent_folders\": []\n    },\n    {\n      \"id\": 2,\n      \"name\": \"monalisa-octocat-hello-world-3f89ada1j3\",\n      \"environment_id\": \"526ce4d7-46da-494f-a4f9-cfd25b818719\",\n      \"owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"billable_owner\": {\n        \"login\": \"octocat\",\n        \"id\": 1,\n        \"node_id\": \"MDQ6VXNlcjE=\",\n        \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n        \"gravatar_id\": \"\",\n        \"url\": \"https://api.github.com/users/octocat\",\n        \"html_url\": \"https://github.com/octocat\",\n        \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n        \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n        \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n        \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n        \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n        \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n        \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n        \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n        \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n        \"type\": \"User\",\n        \"site_admin\": false\n      },\n      \"repository\": {\n        \"id\": 1296269,\n        \"node_id\": \"MDEwOlJlcG9zaXRvcnkxMjk2MjY5\",\n        \"name\": \"Hello-World\",\n        \"full_name\": \"octocat/Hello-World\",\n        \"owner\": {\n          \"login\": \"octocat\",\n          \"id\": 1,\n          \"node_id\": \"MDQ6VXNlcjE=\",\n          \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/octocat\",\n          \"html_url\": \"https://github.com/octocat\",\n          \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n          \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n          \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n          \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"private\": false,\n        \"html_url\": \"https://github.com/octocat/Hello-World\",\n        \"description\": \"This your first repo!\",\n        \"fork\": false,\n        \"url\": \"https://api.github.com/repos/octocat/Hello-World\",\n        \"archive_url\": \"https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\",\n        \"assignees_url\": \"https://api.github.com/repos/octocat/Hello-World/assignees{/user}\",\n        \"blobs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\",\n        \"branches_url\": \"https://api.github.com/repos/octocat/Hello-World/branches{/branch}\",\n        \"collaborators_url\": \"https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\",\n        \"comments_url\": \"https://api.github.com/repos/octocat/Hello-World/comments{/number}\",\n        \"commits_url\": \"https://api.github.com/repos/octocat/Hello-World/commits{/sha}\",\n        \"compare_url\": \"https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\",\n        \"contents_url\": \"https://api.github.com/repos/octocat/Hello-World/contents/{+path}\",\n        \"contributors_url\": \"https://api.github.com/repos/octocat/Hello-World/contributors\",\n        \"deployments_url\": \"https://api.github.com/repos/octocat/Hello-World/deployments\",\n        \"downloads_url\": \"https://api.github.com/repos/octocat/Hello-World/downloads\",\n        \"events_url\": \"https://api.github.com/repos/octocat/Hello-World/events\",\n        \"forks_url\": \"https://api.github.com/repos/octocat/Hello-World/forks\",\n        \"git_commits_url\": \"https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\",\n        \"git_refs_url\": \"https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\",\n        \"git_tags_url\": \"https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\",\n        \"git_url\": \"git:github.com/octocat/Hello-World.git\",\n        \"issue_comment_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\",\n        \"issue_events_url\": \"https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\",\n        \"issues_url\": \"https://api.github.com/repos/octocat/Hello-World/issues{/number}\",\n        \"keys_url\": \"https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\",\n        \"labels_url\": \"https://api.github.com/repos/octocat/Hello-World/labels{/name}\",\n        \"languages_url\": \"https://api.github.com/repos/octocat/Hello-World/languages\",\n        \"merges_url\": \"https://api.github.com/repos/octocat/Hello-World/merges\",\n        \"milestones_url\": \"https://api.github.com/repos/octocat/Hello-World/milestones{/number}\",\n        \"notifications_url\": \"https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\",\n        \"pulls_url\": \"https://api.github.com/repos/octocat/Hello-World/pulls{/number}\",\n        \"releases_url\": \"https://api.github.com/repos/octocat/Hello-World/releases{/id}\",\n        \"ssh_url\": \"git@github.com:octocat/Hello-World.git\",\n        \"stargazers_url\": \"https://api.github.com/repos/octocat/Hello-World/stargazers\",\n        \"statuses_url\": \"https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\",\n        \"subscribers_url\": \"https://api.github.com/repos/octocat/Hello-World/subscribers\",\n        \"subscription_url\": \"https://api.github.com/repos/octocat/Hello-World/subscription\",\n        \"tags_url\": \"https://api.github.com/repos/octocat/Hello-World/tags\",\n        \"teams_url\": \"https://api.github.com/repos/octocat/Hello-World/teams\",\n        \"trees_url\": \"https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\",\n        \"hooks_url\": \"http://api.github.com/repos/octocat/Hello-World/hooks\"\n      },\n      \"machine\": {\n        \"name\": \"standardLinux\",\n        \"display_name\": \"4 cores, 8 GB RAM, 64 GB storage\",\n        \"operating_system\": \"linux\",\n        \"storage_in_bytes\": 68719476736,\n        \"memory_in_bytes\": 8589934592,\n        \"cpus\": 4\n      },\n      \"prebuild\": false,\n      \"created_at\": \"2021-10-14T00:53:30-06:00\",\n      \"updated_at\": \"2021-10-14T00:53:32-06:00\",\n      \"last_used_at\": \"2021-10-14T00:53:30-06:00\",\n      \"state\": \"Available\",\n      \"url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3\",\n      \"git_status\": {\n        \"ahead\": 0,\n        \"behind\": 0,\n        \"has_unpushed_changes\": false,\n        \"has_uncommitted_changes\": false,\n        \"ref\": \"main\"\n      },\n      \"location\": \"WestUs2\",\n      \"idle_timeout_minutes\": 60,\n      \"web_url\": \"https://monalisa-octocat-hello-world-3f89ada1j3.github.dev\",\n      \"machines_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/machines\",\n      \"start_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start\",\n      \"stop_url\": \"https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop\",\n      \"recent_folders\": []\n    }\n  ]\n}\n
    " }, { "httpStatusCode": "401", @@ -71284,16 +71566,16 @@ }, "position": { "type": "integer", - "description": "

    The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", + "description": "

    Required without comfort-fade preview unless using in_reply_to. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", "name": "position", "in": "body", "rawType": "integer", - "rawDescription": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", + "rawDescription": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", "childParamsGroups": [] }, "side": { "type": "string", - "description": "

    In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", "enum": [ "LEFT", "RIGHT" @@ -71301,30 +71583,30 @@ "name": "side", "in": "body", "rawType": "string", - "rawDescription": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "childParamsGroups": [] }, "line": { "type": "integer", - "description": "

    The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", "name": "line", "in": "body", "rawType": "integer", - "rawDescription": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", "childParamsGroups": [] }, "start_line": { "type": "integer", - "description": "

    Required when using multi-line comments. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", "name": "start_line", "in": "body", "rawType": "integer", - "rawDescription": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", "childParamsGroups": [] }, "start_side": { "type": "string", - "description": "

    Required when using multi-line comments. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", "enum": [ "LEFT", "RIGHT", @@ -71333,16 +71615,17 @@ "name": "start_side", "in": "body", "rawType": "string", - "rawDescription": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "childParamsGroups": [] }, "in_reply_to": { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } }, @@ -71422,16 +71705,16 @@ }, { "type": "integer", - "description": "

    The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", + "description": "

    Required without comfort-fade preview unless using in_reply_to. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", "name": "position", "in": "body", "rawType": "integer", - "rawDescription": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", + "rawDescription": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", "childParamsGroups": [] }, { "type": "string", - "description": "

    In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", "enum": [ "LEFT", "RIGHT" @@ -71439,30 +71722,30 @@ "name": "side", "in": "body", "rawType": "string", - "rawDescription": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "childParamsGroups": [] }, { "type": "integer", - "description": "

    The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", "name": "line", "in": "body", "rawType": "integer", - "rawDescription": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", "childParamsGroups": [] }, { "type": "integer", - "description": "

    Required when using multi-line comments. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", "name": "start_line", "in": "body", "rawType": "integer", - "rawDescription": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", "childParamsGroups": [] }, { "type": "string", - "description": "

    Required when using multi-line comments. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", "enum": [ "LEFT", "RIGHT", @@ -71471,16 +71754,17 @@ "name": "start_side", "in": "body", "rawType": "string", - "rawDescription": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "childParamsGroups": [] }, { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } ], diff --git a/lib/rest/static/decorated/ghes-3.0.json b/lib/rest/static/decorated/ghes-3.0.json index 3295960a88..0d2fefa149 100644 --- a/lib/rest/static/decorated/ghes-3.0.json +++ b/lib/rest/static/decorated/ghes-3.0.json @@ -36135,13 +36135,13 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", - "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " + "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", + "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " }, { "lang": "JavaScript", - "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", - "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " + "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ],\n checks: [\n {\n context: 'context',\n app_id: 'app_id'\n }\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", + "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ],\n    checks: [\n      {\n        context: 'context',\n        app_id: 'app_id'\n      }\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " } ], "summary": "Update branch protection", @@ -36177,15 +36177,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -36213,14 +36271,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -36718,15 +36859,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -36754,14 +36953,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -66293,10 +66575,11 @@ "in_reply_to": { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } }, @@ -66439,10 +66722,11 @@ { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } ], diff --git a/lib/rest/static/decorated/ghes-3.1.json b/lib/rest/static/decorated/ghes-3.1.json index d9b0dd5f17..14f69ee89e 100644 --- a/lib/rest/static/decorated/ghes-3.1.json +++ b/lib/rest/static/decorated/ghes-3.1.json @@ -36257,13 +36257,13 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", - "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " + "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", + "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " }, { "lang": "JavaScript", - "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", - "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " + "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ],\n checks: [\n {\n context: 'context',\n app_id: 'app_id'\n }\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", + "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ],\n    checks: [\n      {\n        context: 'context',\n        app_id: 'app_id'\n      }\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " } ], "summary": "Update branch protection", @@ -36299,15 +36299,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -36335,14 +36393,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -36840,15 +36981,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -36876,14 +37075,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -66962,10 +67244,11 @@ "in_reply_to": { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } }, @@ -67108,10 +67391,11 @@ { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } ], diff --git a/lib/rest/static/decorated/ghes-3.2.json b/lib/rest/static/decorated/ghes-3.2.json index 301943fc91..27f083dec6 100644 --- a/lib/rest/static/decorated/ghes-3.2.json +++ b/lib/rest/static/decorated/ghes-3.2.json @@ -37503,13 +37503,13 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", - "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " + "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", + "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " }, { "lang": "JavaScript", - "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", - "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " + "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ],\n checks: [\n {\n context: 'context',\n app_id: 'app_id'\n }\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", + "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ],\n    checks: [\n      {\n        context: 'context',\n        app_id: 'app_id'\n      }\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " } ], "summary": "Update branch protection", @@ -37545,15 +37545,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -37581,14 +37639,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -38086,15 +38227,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -38122,14 +38321,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -69137,10 +69419,11 @@ "in_reply_to": { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } }, @@ -69283,10 +69566,11 @@ { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } ], diff --git a/lib/rest/static/decorated/ghes-3.3.json b/lib/rest/static/decorated/ghes-3.3.json index 072e2db219..543f7f646c 100644 --- a/lib/rest/static/decorated/ghes-3.3.json +++ b/lib/rest/static/decorated/ghes-3.3.json @@ -37739,13 +37739,13 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", - "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " + "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", + "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  http(s)://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " }, { "lang": "JavaScript", - "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", - "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " + "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ],\n checks: [\n {\n context: 'context',\n app_id: 'app_id'\n }\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", + "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ],\n    checks: [\n      {\n        context: 'context',\n        app_id: 'app_id'\n      }\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " } ], "summary": "Update branch protection", @@ -37781,15 +37781,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -37817,14 +37875,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -38314,15 +38455,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -38350,14 +38549,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -69233,16 +69515,16 @@ }, "position": { "type": "integer", - "description": "

    The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", + "description": "

    Required without comfort-fade preview unless using in_reply_to. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", "name": "position", "in": "body", "rawType": "integer", - "rawDescription": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", + "rawDescription": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", "childParamsGroups": [] }, "side": { "type": "string", - "description": "

    In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", "enum": [ "LEFT", "RIGHT" @@ -69250,30 +69532,30 @@ "name": "side", "in": "body", "rawType": "string", - "rawDescription": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "childParamsGroups": [] }, "line": { "type": "integer", - "description": "

    The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", "name": "line", "in": "body", "rawType": "integer", - "rawDescription": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", "childParamsGroups": [] }, "start_line": { "type": "integer", - "description": "

    Required when using multi-line comments. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", "name": "start_line", "in": "body", "rawType": "integer", - "rawDescription": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", "childParamsGroups": [] }, "start_side": { "type": "string", - "description": "

    Required when using multi-line comments. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", "enum": [ "LEFT", "RIGHT", @@ -69282,16 +69564,17 @@ "name": "start_side", "in": "body", "rawType": "string", - "rawDescription": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "childParamsGroups": [] }, "in_reply_to": { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } }, @@ -69371,16 +69654,16 @@ }, { "type": "integer", - "description": "

    The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", + "description": "

    Required without comfort-fade preview unless using in_reply_to. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", "name": "position", "in": "body", "rawType": "integer", - "rawDescription": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", + "rawDescription": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", "childParamsGroups": [] }, { "type": "string", - "description": "

    In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", "enum": [ "LEFT", "RIGHT" @@ -69388,30 +69671,30 @@ "name": "side", "in": "body", "rawType": "string", - "rawDescription": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "childParamsGroups": [] }, { "type": "integer", - "description": "

    The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", "name": "line", "in": "body", "rawType": "integer", - "rawDescription": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", "childParamsGroups": [] }, { "type": "integer", - "description": "

    Required when using multi-line comments. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", "name": "start_line", "in": "body", "rawType": "integer", - "rawDescription": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", "childParamsGroups": [] }, { "type": "string", - "description": "

    Required when using multi-line comments. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", "enum": [ "LEFT", "RIGHT", @@ -69420,16 +69703,17 @@ "name": "start_side", "in": "body", "rawType": "string", - "rawDescription": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "childParamsGroups": [] }, { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } ], diff --git a/lib/rest/static/decorated/github.ae.json b/lib/rest/static/decorated/github.ae.json index 29018f2e39..c27d68afe0 100644 --- a/lib/rest/static/decorated/github.ae.json +++ b/lib/rest/static/decorated/github.ae.json @@ -29507,13 +29507,13 @@ "x-codeSamples": [ { "lang": "Shell", - "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", - "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " + "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n https://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'", + "html": "
    curl \\\n  -X PUT \\\n  -H \"Accept: application/vnd.github.v3+json\" \\\n  https://{hostname}/api/v3/repos/octocat/hello-world/branches/BRANCH/protection \\\n  -d '{\"required_status_checks\":{\"strict\":true,\"contexts\":[\"contexts\"],\"checks\":[{\"context\":\"context\",\"app_id\":\"app_id\"}]},\"enforce_admins\":true,\"required_pull_request_reviews\":{\"dismissal_restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"]},\"dismiss_stale_reviews\":true,\"require_code_owner_reviews\":true,\"required_approving_review_count\":42},\"restrictions\":{\"users\":[\"users\"],\"teams\":[\"teams\"],\"apps\":[\"apps\"]}}'
    " }, { "lang": "JavaScript", - "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", - "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " + "source": "await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n owner: 'octocat',\n repo: 'hello-world',\n branch: 'branch',\n required_status_checks: {\n strict: true,\n contexts: [\n 'contexts'\n ],\n checks: [\n {\n context: 'context',\n app_id: 'app_id'\n }\n ]\n },\n enforce_admins: true,\n required_pull_request_reviews: {\n dismissal_restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ]\n },\n dismiss_stale_reviews: true,\n require_code_owner_reviews: true,\n required_approving_review_count: 42\n },\n restrictions: {\n users: [\n 'users'\n ],\n teams: [\n 'teams'\n ],\n apps: [\n 'apps'\n ]\n }\n})", + "html": "
    await octokit.request('PUT /repos/{owner}/{repo}/branches/{branch}/protection', {\n  owner: 'octocat',\n  repo: 'hello-world',\n  branch: 'branch',\n  required_status_checks: {\n    strict: true,\n    contexts: [\n      'contexts'\n    ],\n    checks: [\n      {\n        context: 'context',\n        app_id: 'app_id'\n      }\n    ]\n  },\n  enforce_admins: true,\n  required_pull_request_reviews: {\n    dismissal_restrictions: {\n      users: [\n        'users'\n      ],\n      teams: [\n        'teams'\n      ]\n    },\n    dismiss_stale_reviews: true,\n    require_code_owner_reviews: true,\n    required_approving_review_count: 42\n  },\n  restrictions: {\n    users: [\n      'users'\n    ],\n    teams: [\n      'teams'\n    ],\n    apps: [\n      'apps'\n    ]\n  }\n})\n
    " } ], "summary": "Update branch protection", @@ -29549,15 +29549,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -29585,14 +29643,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -30082,15 +30223,73 @@ }, "contexts": { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "childParamsGroups": [] + }, + "checks": { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] } }, "required": [ @@ -30118,14 +30317,97 @@ }, { "type": "array of strings", - "description": "

    Required. The list of status checks to require in order to merge into this branch

    ", + "description": "

    Required. The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use checks instead of contexts for more fine-grained control.

    ", "items": { "type": "string" }, "name": "contexts", "in": "body", "rawType": "array", - "rawDescription": "The list of status checks to require in order to merge into this branch", + "rawDescription": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", + "childParamsGroups": [] + }, + { + "type": "array of objects", + "description": "

    The list of status checks to require in order to merge into this branch.

    ", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + "app_id": { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + } + }, + "name": "checks", + "in": "body", + "rawType": "array", + "rawDescription": "The list of status checks to require in order to merge into this branch.", + "childParamsGroups": [ + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", + "childParamsGroups": [] + } + ] + } + ] + } + ] + }, + { + "parentName": "checks", + "parentType": "items", + "id": "checks-items", + "params": [ + { + "type": "string", + "description": "

    The name of the required check

    ", + "name": "context", + "in": "body", + "rawType": "string", + "rawDescription": "The name of the required check", + "childParamsGroups": [] + }, + { + "type": "string", + "description": "

    The ID of the GitHub App that must provide this check. Set to null to accept the check from any source.

    ", + "name": "app_id", + "in": "body", + "rawType": "string", + "rawDescription": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source.", "childParamsGroups": [] } ] @@ -59622,16 +59904,16 @@ }, "position": { "type": "integer", - "description": "

    The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", + "description": "

    Required without comfort-fade preview unless using in_reply_to. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", "name": "position", "in": "body", "rawType": "integer", - "rawDescription": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", + "rawDescription": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", "childParamsGroups": [] }, "side": { "type": "string", - "description": "

    In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", "enum": [ "LEFT", "RIGHT" @@ -59639,30 +59921,30 @@ "name": "side", "in": "body", "rawType": "string", - "rawDescription": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "childParamsGroups": [] }, "line": { "type": "integer", - "description": "

    The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", "name": "line", "in": "body", "rawType": "integer", - "rawDescription": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", "childParamsGroups": [] }, "start_line": { "type": "integer", - "description": "

    Required when using multi-line comments. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", "name": "start_line", "in": "body", "rawType": "integer", - "rawDescription": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", "childParamsGroups": [] }, "start_side": { "type": "string", - "description": "

    Required when using multi-line comments. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", "enum": [ "LEFT", "RIGHT", @@ -59671,16 +59953,17 @@ "name": "start_side", "in": "body", "rawType": "string", - "rawDescription": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "childParamsGroups": [] }, "in_reply_to": { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } }, @@ -59760,16 +60043,16 @@ }, { "type": "integer", - "description": "

    The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", + "description": "

    Required without comfort-fade preview unless using in_reply_to. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.

    ", "name": "position", "in": "body", "rawType": "integer", - "rawDescription": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", + "rawDescription": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above.", "childParamsGroups": [] }, { "type": "string", - "description": "

    In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. In a split diff view, the side of the diff that the pull request's changes appear on. Can be LEFT or RIGHT. Use LEFT for deletions that appear in red. Use RIGHT for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"Diff view options\" in the GitHub Help documentation.

    ", "enum": [ "LEFT", "RIGHT" @@ -59777,30 +60060,30 @@ "name": "side", "in": "body", "rawType": "string", - "rawDescription": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "childParamsGroups": [] }, { "type": "integer", - "description": "

    The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", + "description": "

    Required with comfort-fade preview unless using in_reply_to. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.

    ", "name": "line", "in": "body", "rawType": "integer", - "rawDescription": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", + "rawDescription": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to.", "childParamsGroups": [] }, { "type": "integer", - "description": "

    Required when using multi-line comments. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_line is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation.

    ", "name": "start_line", "in": "body", "rawType": "integer", - "rawDescription": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation.", "childParamsGroups": [] }, { "type": "string", - "description": "

    Required when using multi-line comments. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", + "description": "

    Required when using multi-line comments unless using in_reply_to. To create multi-line comments, you must use the comfort-fade preview header. The start_side is the starting side of the diff that the comment applies to. Can be LEFT or RIGHT. To learn more about multi-line comments, see \"Commenting on a pull request\" in the GitHub Help documentation. See side in this table for additional context.

    ", "enum": [ "LEFT", "RIGHT", @@ -59809,16 +60092,17 @@ "name": "start_side", "in": "body", "rawType": "string", - "rawDescription": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "rawDescription": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "childParamsGroups": [] }, { "type": "integer", "example": 2, + "description": "

    The ID of the review comment to reply to. To find the ID of a review comment with \"List review comments on a pull request\". When specified, all parameters other than body in the request body are ignored.

    ", "name": "in_reply_to", "in": "body", "rawType": "integer", - "description": "", + "rawDescription": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored.", "childParamsGroups": [] } ], diff --git a/lib/rest/static/dereferenced/api.github.com.deref.json b/lib/rest/static/dereferenced/api.github.com.deref.json index df061d7579..e6bb3c9048 100644 --- a/lib/rest/static/dereferenced/api.github.com.deref.json +++ b/lib/rest/static/dereferenced/api.github.com.deref.json @@ -5375,6 +5375,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -20224,6 +20227,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -21417,6 +21423,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -23390,6 +23399,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -24481,6 +24493,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -36912,6 +36927,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -38187,6 +38205,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -39278,6 +39299,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -43913,6 +43937,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -45004,6 +45031,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -47595,6 +47625,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -49707,6 +49740,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -53074,6 +53110,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -55701,6 +55740,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -58127,6 +58169,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -59319,6 +59364,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -61623,6 +61671,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -64019,6 +64070,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -65110,6 +65164,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -72961,6 +73018,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -74052,6 +74112,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -77406,6 +77469,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -78981,6 +79047,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -80606,6 +80675,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -82660,6 +82732,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -85092,6 +85167,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -87136,6 +87214,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -91253,6 +91334,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -92754,6 +92838,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -94794,6 +94881,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -106543,6 +106633,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -108491,6 +108584,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -116739,6 +116835,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -118033,6 +118132,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -119132,6 +119234,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -121623,6 +121728,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -122917,6 +123025,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -124016,6 +124127,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -127621,6 +127735,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -128821,6 +128938,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -131020,6 +131140,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -132688,6 +132811,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -134939,6 +135065,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -136607,6 +136736,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -139502,6 +139634,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -141170,6 +141305,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -147002,6 +147140,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -148670,6 +148811,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -150300,6 +150444,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -151700,6 +151863,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -152591,6 +152773,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -153558,10 +153759,27 @@ }, "contexts": { "type": "array", - "description": "The list of status checks to require in order to merge into this branch", + "description": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "items": { "type": "string" } + }, + "checks": { + "type": "array", + "description": "The list of status checks to require in order to merge into this branch.", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "The name of the required check" + }, + "app_id": { + "type": "string", + "description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source." + } + } + } } }, "required": [ @@ -153747,6 +153965,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -156340,6 +156574,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -156498,6 +156748,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -162750,6 +163016,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -169311,6 +169596,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -171793,6 +172081,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -173985,6 +174276,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -176358,6 +176652,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -181285,9 +181582,10 @@ "type": "string", "enum": [ "pending", - "complete" + "complete", + "failed" ], - "description": "`pending` files have not yet been processed, while `complete` means all results in the SARIF have been stored." + "description": "`pending` files have not yet been processed, while `complete` means results from the SARIF have been stored. `failed` files have either not been processed at all, or could only be partially processed." }, "analyses_url": { "type": "string", @@ -181295,6 +181593,15 @@ "format": "uri", "readOnly": true, "nullable": true + }, + "errors": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Any errors that ocurred during processing of the delivery.", + "readOnly": true, + "nullable": true } } }, @@ -181370,7 +181677,7 @@ }, "/repos/{owner}/{repo}/codespaces": { "get": { - "summary": "List codespaces in a Repository for the authenticated user", + "summary": "List codespaces in a repository for the authenticated user", "description": "Lists the codespaces associated to a specified repository and the authenticated user.\n\nYou must authenticate using an access token with the `codespace` scope to use this endpoint.", "tags": [ "codespaces" @@ -183087,6 +183394,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -183578,7 +183888,7 @@ "examples": { "default": { "value": { - "total_count": 3, + "total_count": 2, "codespaces": [ { "id": 1, @@ -183725,7 +184035,7 @@ ] }, { - "id": 1, + "id": 2, "name": "monalisa-octocat-hello-world-3f89ada1j3", "environment_id": "526ce4d7-46da-494f-a4f9-cfd25b818719", "owner": { @@ -183866,150 +184176,6 @@ "stop_url": "https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop", "recent_folders": [ - ] - }, - { - "id": 1, - "name": "monalisa-octocat-hello-world-f8adfad99a", - "environment_id": "6ac8cd6d-a2d0-4ae3-8cea-e135059264df", - "owner": { - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://github.com/images/error/octocat_happy.gif", - "gravatar_id": "", - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false - }, - "billable_owner": { - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://github.com/images/error/octocat_happy.gif", - "gravatar_id": "", - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false - }, - "repository": { - "id": 1296269, - "node_id": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5", - "name": "Hello-World", - "full_name": "octocat/Hello-World", - "owner": { - "login": "octocat", - "id": 1, - "node_id": "MDQ6VXNlcjE=", - "avatar_url": "https://github.com/images/error/octocat_happy.gif", - "gravatar_id": "", - "url": "https://api.github.com/users/octocat", - "html_url": "https://github.com/octocat", - "followers_url": "https://api.github.com/users/octocat/followers", - "following_url": "https://api.github.com/users/octocat/following{/other_user}", - "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}", - "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/octocat/subscriptions", - "organizations_url": "https://api.github.com/users/octocat/orgs", - "repos_url": "https://api.github.com/users/octocat/repos", - "events_url": "https://api.github.com/users/octocat/events{/privacy}", - "received_events_url": "https://api.github.com/users/octocat/received_events", - "type": "User", - "site_admin": false - }, - "private": false, - "html_url": "https://github.com/octocat/Hello-World", - "description": "This your first repo!", - "fork": false, - "url": "https://api.github.com/repos/octocat/Hello-World", - "archive_url": "https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}", - "assignees_url": "https://api.github.com/repos/octocat/Hello-World/assignees{/user}", - "blobs_url": "https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}", - "branches_url": "https://api.github.com/repos/octocat/Hello-World/branches{/branch}", - "collaborators_url": "https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}", - "comments_url": "https://api.github.com/repos/octocat/Hello-World/comments{/number}", - "commits_url": "https://api.github.com/repos/octocat/Hello-World/commits{/sha}", - "compare_url": "https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}", - "contents_url": "https://api.github.com/repos/octocat/Hello-World/contents/{+path}", - "contributors_url": "https://api.github.com/repos/octocat/Hello-World/contributors", - "deployments_url": "https://api.github.com/repos/octocat/Hello-World/deployments", - "downloads_url": "https://api.github.com/repos/octocat/Hello-World/downloads", - "events_url": "https://api.github.com/repos/octocat/Hello-World/events", - "forks_url": "https://api.github.com/repos/octocat/Hello-World/forks", - "git_commits_url": "https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}", - "git_refs_url": "https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}", - "git_tags_url": "https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}", - "git_url": "git:github.com/octocat/Hello-World.git", - "issue_comment_url": "https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}", - "issue_events_url": "https://api.github.com/repos/octocat/Hello-World/issues/events{/number}", - "issues_url": "https://api.github.com/repos/octocat/Hello-World/issues{/number}", - "keys_url": "https://api.github.com/repos/octocat/Hello-World/keys{/key_id}", - "labels_url": "https://api.github.com/repos/octocat/Hello-World/labels{/name}", - "languages_url": "https://api.github.com/repos/octocat/Hello-World/languages", - "merges_url": "https://api.github.com/repos/octocat/Hello-World/merges", - "milestones_url": "https://api.github.com/repos/octocat/Hello-World/milestones{/number}", - "notifications_url": "https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}", - "pulls_url": "https://api.github.com/repos/octocat/Hello-World/pulls{/number}", - "releases_url": "https://api.github.com/repos/octocat/Hello-World/releases{/id}", - "ssh_url": "git@github.com:octocat/Hello-World.git", - "stargazers_url": "https://api.github.com/repos/octocat/Hello-World/stargazers", - "statuses_url": "https://api.github.com/repos/octocat/Hello-World/statuses/{sha}", - "subscribers_url": "https://api.github.com/repos/octocat/Hello-World/subscribers", - "subscription_url": "https://api.github.com/repos/octocat/Hello-World/subscription", - "tags_url": "https://api.github.com/repos/octocat/Hello-World/tags", - "teams_url": "https://api.github.com/repos/octocat/Hello-World/teams", - "trees_url": "https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}", - "hooks_url": "http://api.github.com/repos/octocat/Hello-World/hooks" - }, - "machine": { - "name": "standardLinux", - "display_name": "4 cores, 8 GB RAM, 64 GB storage", - "operating_system": "linux", - "storage_in_bytes": 68719476736, - "memory_in_bytes": 8589934592, - "cpus": 4 - }, - "prebuild": false, - "created_at": "2021-10-14T00:53:30-06:00", - "updated_at": "2021-10-14T00:53:32-06:00", - "last_used_at": "2021-10-14T00:53:30-06:00", - "state": "Available", - "url": "https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a", - "git_status": { - "ahead": 0, - "behind": 0, - "has_unpushed_changes": false, - "has_uncommitted_changes": false, - "ref": "main" - }, - "location": "WestUs2", - "idle_timeout_minutes": 60, - "web_url": "https://monalisa-octocat-hello-world-f8adfad99a.github.dev", - "machines_url": "https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/machines", - "start_url": "https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/start", - "stop_url": "https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop", - "recent_folders": [ - ] } ] @@ -185854,6 +186020,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -188149,6 +188318,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -190957,6 +191129,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -198165,6 +198340,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -199405,6 +199583,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -204295,6 +204476,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -206411,6 +206595,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -218947,6 +219134,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -220038,6 +220228,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -222532,6 +222725,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -224482,6 +224678,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -225776,6 +225975,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -226875,6 +227077,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -238164,6 +238369,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -240339,6 +240547,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -241983,6 +242194,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -243074,6 +243288,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -244729,6 +244946,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -245820,6 +246040,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -250602,6 +250825,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -251693,6 +251919,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -254408,6 +254637,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -255499,6 +255731,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -258096,6 +258331,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -259187,6 +259425,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -260808,6 +261049,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -261899,6 +262143,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -263557,6 +263804,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -264648,6 +264898,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -266109,6 +266362,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -267200,6 +267456,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -287256,6 +287515,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -288347,6 +288609,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -296863,6 +297128,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -302667,6 +302935,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -303907,6 +304178,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -319607,6 +319881,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -321902,6 +322179,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -323258,11 +323538,11 @@ }, "position": { "type": "integer", - "description": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above." + "description": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above." }, "side": { "type": "string", - "description": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "description": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "enum": [ "LEFT", "RIGHT" @@ -323270,15 +323550,15 @@ }, "line": { "type": "integer", - "description": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to." + "description": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to." }, "start_line": { "type": "integer", - "description": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation." + "description": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation." }, "start_side": { "type": "string", - "description": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "description": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "enum": [ "LEFT", "RIGHT", @@ -323287,7 +323567,8 @@ }, "in_reply_to": { "type": "integer", - "example": 2 + "example": 2, + "description": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored." } }, "required": [ @@ -328273,6 +328554,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -329513,6 +329797,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -332794,6 +333081,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -334034,6 +334324,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -350781,6 +351074,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -352522,6 +352818,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -354226,6 +354525,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -361983,6 +362285,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -364317,6 +364622,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -366643,6 +366951,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -378986,6 +379297,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -380954,6 +381268,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -386115,6 +386432,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -388916,6 +389236,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -391211,6 +391534,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -394100,6 +394426,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -396883,6 +397212,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -399335,6 +399667,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -402133,6 +402468,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -404680,6 +405018,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -410455,6 +410796,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -412147,6 +412491,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -413238,6 +413585,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -417941,6 +418291,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -419566,6 +419919,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -421207,6 +421563,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -423423,6 +423782,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -425676,6 +426038,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -427660,6 +428025,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -430824,6 +431192,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -432320,6 +432691,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -434261,6 +434635,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -436304,6 +436681,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -437547,6 +437927,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -439703,6 +440086,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -442482,6 +442868,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -443573,6 +443962,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -445511,6 +445903,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -446602,6 +446997,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -448532,6 +448930,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -449623,6 +450024,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -454803,6 +455207,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -456847,6 +457254,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -459648,6 +460058,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -460739,6 +461152,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -462669,6 +463085,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -463760,6 +464179,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -466274,6 +466696,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -467957,6 +468382,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -469065,6 +469493,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -470799,6 +471230,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, diff --git a/lib/rest/static/dereferenced/ghes-3.0.deref.json b/lib/rest/static/dereferenced/ghes-3.0.deref.json index c291a190d6..4cff9118fd 100644 --- a/lib/rest/static/dereferenced/ghes-3.0.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.0.deref.json @@ -9913,6 +9913,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -27332,6 +27335,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -28516,6 +28522,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -29770,6 +29779,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -30858,6 +30870,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -43251,6 +43266,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -44526,6 +44544,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -45614,6 +45635,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -48007,6 +48031,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -49095,6 +49122,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -51673,6 +51703,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -53772,6 +53805,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -57046,6 +57082,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -59659,6 +59698,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -62075,6 +62117,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -63258,6 +63303,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -65549,6 +65597,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -66988,6 +67039,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -68076,6 +68130,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -72985,6 +73042,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -74073,6 +74133,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -79713,6 +79776,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -81211,6 +81277,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -91512,6 +91581,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -93447,6 +93519,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -101515,6 +101590,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -102796,6 +102874,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -103886,6 +103967,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -106817,6 +106901,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -108098,6 +108185,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -109188,6 +109278,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -112707,6 +112800,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -113898,6 +113994,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -116084,6 +116183,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -117739,6 +117841,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -119977,6 +120082,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -121632,6 +121740,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -125810,6 +125921,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -127465,6 +127579,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -128412,6 +128529,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -129812,6 +129948,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -130703,6 +130858,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -131677,10 +131851,27 @@ }, "contexts": { "type": "array", - "description": "The list of status checks to require in order to merge into this branch", + "description": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "items": { "type": "string" } + }, + "checks": { + "type": "array", + "description": "The list of status checks to require in order to merge into this branch.", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "The name of the required check" + }, + "app_id": { + "type": "string", + "description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source." + } + } + } } }, "required": [ @@ -131866,6 +132057,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -134501,6 +134708,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -134659,6 +134882,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -145726,6 +145965,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -148192,6 +148434,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -150368,6 +150613,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -152725,6 +152973,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -158606,6 +158857,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -165840,6 +166094,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -167071,6 +167328,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -171800,6 +172060,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -173903,6 +174166,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -184261,6 +184527,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -185349,6 +185618,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -187830,6 +188102,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -189771,6 +190046,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -191052,6 +191330,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -192142,6 +192423,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -200561,6 +200845,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -202723,6 +203010,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -204361,6 +204651,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -205449,6 +205742,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -207109,6 +207405,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -208197,6 +208496,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -213010,6 +213312,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -214098,6 +214403,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -216814,6 +217122,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -217902,6 +218213,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -220500,6 +220814,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -221588,6 +221905,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -223209,6 +223529,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -224297,6 +224620,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -225949,6 +226275,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -227037,6 +227366,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -228492,6 +228824,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -229580,6 +229915,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -249662,6 +250000,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -250750,6 +251091,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -259066,6 +259410,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -264926,6 +265273,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -266157,6 +266507,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -280234,7 +280587,8 @@ }, "in_reply_to": { "type": "integer", - "example": 2 + "example": 2, + "description": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored." } }, "required": [ @@ -285224,6 +285578,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -286455,6 +286812,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -289569,6 +289929,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -290800,6 +291163,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -304926,6 +305292,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -306527,6 +306896,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -308239,6 +308611,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -310176,6 +310551,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -312497,6 +312875,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -314820,6 +315201,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -328251,6 +328635,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -330206,6 +330593,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -337252,6 +337642,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -338664,6 +339057,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -339752,6 +340148,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -344584,6 +344983,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -346064,6 +346466,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -347999,6 +348404,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -350033,6 +350441,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -351266,6 +351677,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -353408,6 +353822,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -356171,6 +356588,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -357259,6 +357679,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -359191,6 +359614,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -360279,6 +360705,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -362203,6 +362632,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -363291,6 +363723,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -368156,6 +368591,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -369244,6 +369682,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -371168,6 +371609,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -372256,6 +372700,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -374757,6 +375204,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -376272,6 +376722,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -377371,6 +377824,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -379091,6 +379547,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, diff --git a/lib/rest/static/dereferenced/ghes-3.1.deref.json b/lib/rest/static/dereferenced/ghes-3.1.deref.json index 64aba6fbe2..5de8dc1ea1 100644 --- a/lib/rest/static/dereferenced/ghes-3.1.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.1.deref.json @@ -9913,6 +9913,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -27332,6 +27335,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -28516,6 +28522,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -29770,6 +29779,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -30858,6 +30870,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -43276,6 +43291,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -44551,6 +44569,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -45639,6 +45660,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -48032,6 +48056,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -49120,6 +49147,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -51698,6 +51728,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -53797,6 +53830,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -57071,6 +57107,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -59684,6 +59723,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -62100,6 +62142,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -63283,6 +63328,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -65574,6 +65622,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -67303,6 +67354,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -68391,6 +68445,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -73300,6 +73357,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -74388,6 +74448,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -80028,6 +80091,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -81526,6 +81592,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -91827,6 +91896,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -93762,6 +93834,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -101830,6 +101905,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -103111,6 +103189,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -104201,6 +104282,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -107132,6 +107216,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -108413,6 +108500,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -109503,6 +109593,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -113022,6 +113115,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -114213,6 +114309,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -116399,6 +116498,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -118054,6 +118156,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -120292,6 +120397,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -121947,6 +122055,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -126125,6 +126236,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -127780,6 +127894,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -128727,6 +128844,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -130127,6 +130263,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -131018,6 +131173,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -131992,10 +132166,27 @@ }, "contexts": { "type": "array", - "description": "The list of status checks to require in order to merge into this branch", + "description": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "items": { "type": "string" } + }, + "checks": { + "type": "array", + "description": "The list of status checks to require in order to merge into this branch.", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "The name of the required check" + }, + "app_id": { + "type": "string", + "description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source." + } + } + } } }, "required": [ @@ -132181,6 +132372,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -134816,6 +135023,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -134974,6 +135197,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -141226,6 +141465,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -147640,6 +147898,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -150106,6 +150367,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -152282,6 +152546,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -154639,6 +154906,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -161440,6 +161710,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -168674,6 +168947,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -169905,6 +170181,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -174787,6 +175066,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -176890,6 +177172,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -187248,6 +187533,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -188336,6 +188624,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -190817,6 +191108,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -192758,6 +193052,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -194039,6 +194336,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -195129,6 +195429,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -203548,6 +203851,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -205710,6 +206016,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -207348,6 +207657,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -208436,6 +208748,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -210096,6 +210411,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -211184,6 +211502,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -215997,6 +216318,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -217085,6 +217409,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -219801,6 +220128,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -220889,6 +221219,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -223487,6 +223820,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -224575,6 +224911,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -226196,6 +226535,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -227284,6 +227626,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -228936,6 +229281,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -230024,6 +230372,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -231479,6 +231830,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -232567,6 +232921,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -252649,6 +253006,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -253737,6 +254097,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -262053,6 +262416,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -267913,6 +268279,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -269144,6 +269513,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -283830,7 +284202,8 @@ }, "in_reply_to": { "type": "integer", - "example": 2 + "example": 2, + "description": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored." } }, "required": [ @@ -288820,6 +289193,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -290051,6 +290427,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -293316,6 +293695,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -294547,6 +294929,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -309814,6 +310199,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -311415,6 +311803,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -313127,6 +313518,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -315064,6 +315458,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -317385,6 +317782,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -319708,6 +320108,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -333139,6 +333542,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -335094,6 +335500,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -342154,6 +342563,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -343566,6 +343978,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -344654,6 +345069,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -349486,6 +349904,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -350966,6 +351387,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -352901,6 +353325,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -354935,6 +355362,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -356168,6 +356598,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -358310,6 +358743,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -361082,6 +361518,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -362170,6 +362609,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -364102,6 +364544,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -365190,6 +365635,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -367114,6 +367562,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -368202,6 +368653,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -373067,6 +373521,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -374155,6 +374612,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -376079,6 +376539,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -377167,6 +377630,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -379668,6 +380134,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -381183,6 +381652,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -382282,6 +382754,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -384002,6 +384477,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, diff --git a/lib/rest/static/dereferenced/ghes-3.2.deref.json b/lib/rest/static/dereferenced/ghes-3.2.deref.json index 1a4dcfd36f..38398ff96d 100644 --- a/lib/rest/static/dereferenced/ghes-3.2.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.2.deref.json @@ -10733,6 +10733,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -28244,6 +28247,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -29437,6 +29443,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -30697,6 +30706,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -31788,6 +31800,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -44215,6 +44230,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -45497,6 +45515,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -46588,6 +46609,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -48988,6 +49012,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -50079,6 +50106,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -52666,6 +52696,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -54774,6 +54807,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -58057,6 +58093,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -60680,6 +60719,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -63116,6 +63158,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -64308,6 +64353,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -66608,6 +66656,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -68343,6 +68394,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -69434,6 +69488,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -75227,6 +75284,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -76318,6 +76378,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -81968,6 +82031,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -83480,6 +83546,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -93783,6 +93852,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -95727,6 +95799,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -103813,6 +103888,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -105107,6 +105185,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -106206,6 +106287,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -109224,6 +109308,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -110518,6 +110605,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -111617,6 +111707,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -115182,6 +115275,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -116382,6 +116478,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -118577,6 +118676,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -120241,6 +120343,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -122488,6 +122593,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -124152,6 +124260,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -129727,6 +129838,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -131391,6 +131505,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -132344,6 +132461,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -133744,6 +133880,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -134635,6 +134790,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -135609,10 +135783,27 @@ }, "contexts": { "type": "array", - "description": "The list of status checks to require in order to merge into this branch", + "description": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "items": { "type": "string" } + }, + "checks": { + "type": "array", + "description": "The list of status checks to require in order to merge into this branch.", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "The name of the required check" + }, + "app_id": { + "type": "string", + "description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source." + } + } + } } }, "required": [ @@ -135798,6 +135989,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -138433,6 +138640,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -138591,6 +138814,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -144843,6 +145082,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -151260,6 +151518,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -153738,6 +153999,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -155926,6 +156190,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -158295,6 +158562,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -165130,6 +165400,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -172373,6 +172646,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -173613,6 +173889,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -178506,6 +178785,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -180618,6 +180900,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -192900,6 +193185,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -193991,6 +194279,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -196481,6 +196772,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -198431,6 +198725,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -199725,6 +200022,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -200824,6 +201124,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -210192,6 +210495,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -212363,6 +212669,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -214007,6 +214316,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -215098,6 +215410,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -216764,6 +217079,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -217855,6 +218173,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -222674,6 +222995,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -223765,6 +224089,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -226487,6 +226814,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -227578,6 +227908,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -230182,6 +230515,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -231273,6 +231609,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -232900,6 +233239,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -233991,6 +234333,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -235649,6 +235994,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -236740,6 +237088,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -238201,6 +238552,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -239292,6 +239646,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -259380,6 +259737,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -260471,6 +260831,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -268796,6 +269159,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -274665,6 +275031,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -275905,6 +276274,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -290599,7 +290971,8 @@ }, "in_reply_to": { "type": "integer", - "example": 2 + "example": 2, + "description": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored." } }, "required": [ @@ -295592,6 +295965,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -296832,6 +297208,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -300113,6 +300492,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -301353,6 +301735,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -317199,6 +317584,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -318812,6 +319200,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -320533,6 +320924,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -322942,6 +323336,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -325272,6 +325669,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -327604,6 +328004,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -341047,6 +341450,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -343011,6 +343417,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -350089,6 +350498,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -351508,6 +351920,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -352599,6 +353014,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -357441,6 +357859,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -358937,6 +359358,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -360874,6 +361298,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -362917,6 +363344,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -364160,6 +364590,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -366312,6 +366745,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -369090,6 +369526,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -370181,6 +370620,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -372119,6 +372561,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -373210,6 +373655,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -375140,6 +375588,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -376231,6 +376682,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -381102,6 +381556,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -382193,6 +382650,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -384123,6 +384583,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -385214,6 +385677,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -387724,6 +388190,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -389248,6 +389717,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -390356,6 +390828,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -392086,6 +392561,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, diff --git a/lib/rest/static/dereferenced/ghes-3.3.deref.json b/lib/rest/static/dereferenced/ghes-3.3.deref.json index 7b73d6aa53..baba972dc4 100644 --- a/lib/rest/static/dereferenced/ghes-3.3.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.3.deref.json @@ -10568,6 +10568,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -28079,6 +28082,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -29272,6 +29278,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -30928,6 +30937,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -32019,6 +32031,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -44446,6 +44461,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -45721,6 +45739,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -46812,6 +46833,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -49201,6 +49225,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -50292,6 +50319,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -52879,6 +52909,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -54987,6 +55020,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -58258,6 +58294,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -60881,6 +60920,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -63317,6 +63359,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -64509,6 +64554,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -66809,6 +66857,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -68649,6 +68700,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -69740,6 +69794,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -75533,6 +75590,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -76624,6 +76684,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -82223,6 +82286,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -83724,6 +83790,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -85760,6 +85829,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -96413,6 +96485,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -98357,6 +98432,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -106307,6 +106385,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -107601,6 +107682,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -108700,6 +108784,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -111191,6 +111278,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -112485,6 +112575,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -113584,6 +113677,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -117199,6 +117295,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -118399,6 +118498,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -120594,6 +120696,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -122258,6 +122363,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -124505,6 +124613,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -126169,6 +126280,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -128944,6 +129058,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -130608,6 +130725,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -136139,6 +136259,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -137803,6 +137926,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -139230,6 +139356,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -140630,6 +140775,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -141521,6 +141685,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -142488,10 +142671,27 @@ }, "contexts": { "type": "array", - "description": "The list of status checks to require in order to merge into this branch", + "description": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "items": { "type": "string" } + }, + "checks": { + "type": "array", + "description": "The list of status checks to require in order to merge into this branch.", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "The name of the required check" + }, + "app_id": { + "type": "string", + "description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source." + } + } + } } }, "required": [ @@ -142677,6 +142877,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -145270,6 +145486,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -145428,6 +145660,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -151680,6 +151928,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -158244,6 +158511,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -160722,6 +160992,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -162910,6 +163183,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -165279,6 +165555,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -172102,6 +172381,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -179299,6 +179581,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -180539,6 +180824,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -185425,6 +185713,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -187537,6 +187828,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -199757,6 +200051,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -200848,6 +201145,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -203338,6 +203638,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -205288,6 +205591,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -206582,6 +206888,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -207681,6 +207990,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -217049,6 +217361,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -219220,6 +219535,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -220864,6 +221182,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -221955,6 +222276,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -223610,6 +223934,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -224701,6 +225028,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -229483,6 +229813,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -230574,6 +230907,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -233289,6 +233625,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -234380,6 +234719,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -236977,6 +237319,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -238068,6 +238413,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -239689,6 +240037,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -240780,6 +241131,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -242438,6 +242792,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -243529,6 +243886,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -244990,6 +245350,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -246081,6 +246444,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -266137,6 +266503,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -267228,6 +267597,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -275740,6 +276112,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -281555,6 +281930,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -282795,6 +283173,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -297399,11 +297780,11 @@ }, "position": { "type": "integer", - "description": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above." + "description": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above." }, "side": { "type": "string", - "description": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "description": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "enum": [ "LEFT", "RIGHT" @@ -297411,15 +297792,15 @@ }, "line": { "type": "integer", - "description": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to." + "description": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to." }, "start_line": { "type": "integer", - "description": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation." + "description": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation." }, "start_side": { "type": "string", - "description": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "description": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "enum": [ "LEFT", "RIGHT", @@ -297428,7 +297809,8 @@ }, "in_reply_to": { "type": "integer", - "example": 2 + "example": 2, + "description": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored." } }, "required": [ @@ -302414,6 +302796,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -303654,6 +304039,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -306935,6 +307323,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -308175,6 +308566,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -324097,6 +324491,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -325710,6 +326107,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -327431,6 +327831,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -329840,6 +330243,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -332170,6 +332576,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -334496,6 +334905,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -347807,6 +348219,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -349771,6 +350186,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -356849,6 +357267,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -358261,6 +358682,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -359352,6 +359776,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -364177,6 +364604,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -365673,6 +366103,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -367610,6 +368043,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -369653,6 +370089,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -370896,6 +371335,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -373048,6 +373490,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -375826,6 +376271,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -376917,6 +377365,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -378855,6 +379306,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -379946,6 +380400,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -381876,6 +382333,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -382967,6 +383427,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -387832,6 +388295,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -388923,6 +389389,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -390853,6 +391322,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -391944,6 +392416,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -394454,6 +394929,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -395972,6 +396450,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -397080,6 +397561,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -398810,6 +399294,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, diff --git a/lib/rest/static/dereferenced/github.ae.deref.json b/lib/rest/static/dereferenced/github.ae.deref.json index d30dffcca0..eb53effa3c 100644 --- a/lib/rest/static/dereferenced/github.ae.deref.json +++ b/lib/rest/static/dereferenced/github.ae.deref.json @@ -8890,6 +8890,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -27994,6 +27997,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -29269,6 +29275,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -30360,6 +30369,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -33427,6 +33439,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -35535,6 +35550,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -38816,6 +38834,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -41711,6 +41732,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -46710,6 +46734,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -47801,6 +47828,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -52655,6 +52685,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -54156,6 +54189,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -64352,6 +64388,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -66296,6 +66335,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -74246,6 +74288,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -75540,6 +75585,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -76639,6 +76687,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -79103,6 +79154,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -80397,6 +80451,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -81496,6 +81553,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -85829,6 +85889,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -87493,6 +87556,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -89740,6 +89806,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -91404,6 +91473,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -93890,6 +93962,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -95554,6 +95629,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -100283,6 +100361,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -101947,6 +102028,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -103493,6 +103577,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -104893,6 +104996,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -105784,6 +105906,25 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string" + }, + "app_id": { + "type": "string", + "nullable": true + } + }, + "required": [ + "context", + "app_id" + ] + } + }, "contexts_url": { "type": "string" }, @@ -106751,10 +106892,27 @@ }, "contexts": { "type": "array", - "description": "The list of status checks to require in order to merge into this branch", + "description": "The list of status checks to require in order to merge into this branch. If any of these checks have recently been set by a particular GitHub App, they will be required to come from that app in future for the branch to merge. Use `checks` instead of `contexts` for more fine-grained control.", "items": { "type": "string" } + }, + "checks": { + "type": "array", + "description": "The list of status checks to require in order to merge into this branch.", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "description": "The name of the required check" + }, + "app_id": { + "type": "string", + "description": "The ID of the GitHub App that must provide this check. Set to `null` to accept the check from any source." + } + } + } } }, "required": [ @@ -106940,6 +107098,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -109533,6 +109707,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -109691,6 +109881,22 @@ "type": "string" } }, + "checks": { + "type": "array", + "items": { + "type": "object", + "properties": { + "context": { + "type": "string", + "example": "continuous-integration/travis-ci" + }, + "app_id": { + "type": "string", + "nullable": true + } + } + } + }, "contexts_url": { "type": "string", "format": "uri", @@ -120901,6 +121107,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -123379,6 +123588,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -125567,6 +125779,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -127936,6 +128151,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -132633,9 +132851,10 @@ "type": "string", "enum": [ "pending", - "complete" + "complete", + "failed" ], - "description": "`pending` files have not yet been processed, while `complete` means all results in the SARIF have been stored." + "description": "`pending` files have not yet been processed, while `complete` means results from the SARIF have been stored. `failed` files have either not been processed at all, or could only be partially processed." }, "analyses_url": { "type": "string", @@ -132643,6 +132862,15 @@ "format": "uri", "readOnly": true, "nullable": true + }, + "errors": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Any errors that ocurred during processing of the delivery.", + "readOnly": true, + "nullable": true } } }, @@ -134529,6 +134757,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -141726,6 +141957,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -142966,6 +143200,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -147852,6 +148089,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -149964,6 +150204,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -160138,6 +160381,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -161229,6 +161475,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -163719,6 +163968,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -165669,6 +165921,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -166963,6 +167218,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -168062,6 +168320,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -177429,6 +177690,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -179600,6 +179864,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -181244,6 +181511,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -182335,6 +182605,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -183990,6 +184263,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -185081,6 +185357,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -189863,6 +190142,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -190954,6 +191236,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -193669,6 +193954,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -194760,6 +195048,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -197357,6 +197648,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -198448,6 +198742,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -200069,6 +200366,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -201160,6 +201460,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -202818,6 +203121,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -203909,6 +204215,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -205370,6 +205679,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -206461,6 +206773,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -226517,6 +226832,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -227608,6 +227926,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -236120,6 +236441,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -241556,6 +241880,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -242796,6 +243123,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -257400,11 +257730,11 @@ }, "position": { "type": "integer", - "description": "The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above." + "description": "**Required without `comfort-fade` preview unless using `in_reply_to`**. The position in the diff where you want to add a review comment. Note this value is not the same as the line number in the file. For help finding the position value, read the note above." }, "side": { "type": "string", - "description": "In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", + "description": "**Required with `comfort-fade` preview unless using `in_reply_to`**. In a split diff view, the side of the diff that the pull request's changes appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions that appear in red. Use `RIGHT` for additions that appear in green or unchanged lines that appear in white and are shown for context. For a multi-line comment, side represents whether the last line of the comment range is a deletion or addition. For more information, see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\" in the GitHub Help documentation.", "enum": [ "LEFT", "RIGHT" @@ -257412,15 +257742,15 @@ }, "line": { "type": "integer", - "description": "The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to." + "description": "**Required with `comfort-fade` preview unless using `in_reply_to`**. The line of the blob in the pull request diff that the comment applies to. For a multi-line comment, the last line of the range that your comment applies to." }, "start_line": { "type": "integer", - "description": "**Required when using multi-line comments**. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation." + "description": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_line` is the first line in the pull request diff that your multi-line comment applies to. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation." }, "start_side": { "type": "string", - "description": "**Required when using multi-line comments**. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", + "description": "**Required when using multi-line comments unless using `in_reply_to`**. To create multi-line comments, you must use the `comfort-fade` preview header. The `start_side` is the starting side of the diff that the comment applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\" in the GitHub Help documentation. See `side` in this table for additional context.", "enum": [ "LEFT", "RIGHT", @@ -257429,7 +257759,8 @@ }, "in_reply_to": { "type": "integer", - "example": 2 + "example": 2, + "description": "The ID of the review comment to reply to. To find the ID of a review comment with [\"List review comments on a pull request\"](#list-review-comments-on-a-pull-request). When specified, all parameters other than `body` in the request body are ignored." } }, "required": [ @@ -262415,6 +262746,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -263655,6 +263989,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -266936,6 +267273,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -268176,6 +268516,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -283984,6 +284327,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -285597,6 +285943,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -288372,6 +288721,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -290702,6 +291054,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -293028,6 +293383,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -305085,6 +305443,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -307049,6 +307410,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -313439,6 +313803,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -314851,6 +315218,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -315942,6 +316312,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -320583,6 +320956,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -322079,6 +322455,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -324016,6 +324395,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -326059,6 +326441,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -327302,6 +327687,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -329454,6 +329842,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -332233,6 +332624,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -333324,6 +333718,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -335262,6 +335659,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -336353,6 +336753,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -341798,6 +342201,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -343248,6 +343654,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -344356,6 +344765,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, @@ -346086,6 +346498,9 @@ "delete_branch_on_merge": { "type": "boolean" }, + "allow_update_branch": { + "type": "boolean" + }, "allow_merge_commit": { "type": "boolean" }, diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 9b5cf63260..c74b00152f 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8ab469fb15802a37006467670dc8f1f3039c0a7431a271c5673e0c0538827b9 -size 617186 +oid sha256:8257f6b49f9bfd27242d5c9b93f0ad0b2b1aa02c6d5e176eb2413f68482814cc +size 617208 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 020ff5fe43..07f85f9a23 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5de88cf4c279430dac4cf46a57dbb7a58e8bb821b33180cb759ff097ffc26646 -size 1057787 +oid sha256:66c37b6e68b2d91d695ff7af8ec238b7b0f3ae25b4153a935802e1a117567e04 +size 1057671 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index e1aa9dd2a9..11bd99f904 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f66188b7cc39420aa98545b7dc653679059fcaed79e452ec3703386d4ac1c3d6 -size 940058 +oid sha256:a4ec88836717ffd36327311347de9876d8d3434a8b10d3e6c6f1fc71336b9d2d +size 940606 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index e14e94eb12..6031eb2bdd 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4f1e9de865cf362e588e6de57b81f838f590c78ee4f65884afdb939e719cef8 -size 3842011 +oid sha256:cf5a0db21c9f4353a80d3366bad034baaf5cd3f9fc7d64edac8aab224fa873d3 +size 3842456 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index c97bfee73c..e004dac4a2 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f09814dccee94e63744a49bf0d1a16741cdb9966095a2e9a86014f7f17a8edb2 -size 545772 +oid sha256:1b1844f983496eb0bb5d5312337d40ab034aadd09b63ea153dc7f30fc5c30780 +size 545691 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index d98844d183..eae62227a5 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae0ef5b381c0ebde4f164807da65ba8413573c905f6f6a0f6ab1e0743ff9c44e -size 2165049 +oid sha256:1e3b719c4de2205474bc668d0122f2a11f4d75eecf928a84229070891e273fae +size 2163516 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 50bbc5b344..fc66a21eae 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95df7713fee6a77f208e65e6b27cf91e7147623392ed706a9d4863b4addc05ed -size 638340 +oid sha256:6848774934e4f422f53824d4a5aa20f6972b8f70790f1ab41e40544df83ef0e1 +size 638376 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 4453b2120e..e45c05d498 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a35bfa6778f1e2bf59e4bfb1d358e9480b1cb45269e0d15d6eb64015e0dd02e9 -size 3280849 +oid sha256:06845612b23746ac0e8eae3c68c1e1d0eb5d4c5db5a6cb9efb855a3956f2ec98 +size 3281200 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 305f2c9d24..9edd2bf7db 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e84b0e41502b20964328d382da9bec36299ea0604d2e5d9fabf040d2988ee866 -size 543544 +oid sha256:bfd83204d41311c0d6f390df41ebc9cdac7df1767288c306faaebdc795a382aa +size 543425 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 3a872dae20..8a280fd68d 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f0c242d6fdab1ccec80193529d9def3b2bf639d964e0d02465598618d620013 -size 2187007 +oid sha256:06b5b3f15fc62d312b493aaf19038d6ea858c1c64343493987fea9912a05e159 +size 2187010 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 2be02b2092..3e49fd970c 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eac1c68be258ac6652d5afbe6854269788af34616f008dcc9dc7d10206452b2d -size 631387 +oid sha256:efe8aa12be7b76a4901d068fd37472a236deb39c1c489fa3162cdf679622c2e4 +size 631529 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 163309f3c6..639e813bce 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6363ced5a9e404320dff929f033a27f18fbf1f5094a08dc7d56282cbbe68cf6a -size 1088967 +oid sha256:bf7e13af4275629591fb1d2aea69a93b61eaabc740100f0d2549af5056535d1c +size 1089094 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 1d4122fc73..73a319f221 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:382398c2aa035ba40d4e764f7a7b68a192ba7e81e8b5975a3495fa1445661dc5 -size 963995 +oid sha256:1cdbf888c16cdf9ab7a8ef34fc193a4b423dce2ec978d70e8afe0ae12f15fe86 +size 964308 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 24ec92b77a..f92ebcd284 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a678574df35c09c96f6fb68ad0c190a728d29c3a365631d010b87fe83aee6808 -size 3932971 +oid sha256:adea30dcf0753b3b5f677ce4e08687eb66b27ef60de2c38e5cfeb683370760fb +size 3932712 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 2d5c41a19b..57d91b77b0 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:631b45957b62fc6238d5f0c7c3e13e40e6bcbca142ffc98ffee1e88b55693c17 -size 557027 +oid sha256:fc87e6d9e3f6cfc6182741677def689718fa3dd322d87bdd29fc5360a786648e +size 556869 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 87fedfd890..fa00bc4615 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8273d6ef03d1529154753637aaaeefa6b98fe66704313bda162a37cce4ea7734 -size 2213697 +oid sha256:a896e381d9a0a2b59f0b68e70b383e5c0fab0d83bd572100adee1cf0db18aef6 +size 2215404 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 610cecbe81..67825c7aa7 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d6b253f9a73aacb054f63fb15d02fbe90453d1bb62c8354e946fd45afc58c79 -size 652656 +oid sha256:e0fefb9d18172c747ceedb239a2866bf1932fabdfbd2daa72da4a42f5a15a3f6 +size 652550 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 4b9907e02d..85b05891f8 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4a7649ee38934dd1f6135dcf88a782ff4af4c798bb6628465ae007a1c138861 -size 3361281 +oid sha256:9a51674ed417e9cc8a539504d345c82970402671b73adebb68e28a9c4adb5ea7 +size 3361992 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 694fb37c6d..8d380fc21c 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f8842d7cfcaf73ed25dee6ebd35784300f8a77df8b78dcfb3d2234946a4171c -size 554665 +oid sha256:a70236207492d07ee0303a438a1686873331f16f96e015f47d1d62913ebed63c +size 554746 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 9dbbb74ddd..c5856c5f3c 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c918102c373865b8fc5a61b8de4025b9c7d5819f3e86a0c2652ea69febda333e -size 2237215 +oid sha256:56f2e00bf6b47f26ad8b9b39de2298d40da925f6925abaedbd68ff92f01bcd3a +size 2236322 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 6807c45d14..4a027eaf71 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99139714074aa09c544f2319f567db15bc79a9b7e16576fa7df16f7bf7f69962 -size 642945 +oid sha256:39198c904a8fc3f0b5ecc85c98f9a12c95b01934619b49ed9565d56ca375b263 +size 642897 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 16dc8c1c5c..80abad3c4b 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:756f9aaa08044929a7cd455421a84325b3bb85c52e0b9831a16f5238da69aeca -size 1111592 +oid sha256:87470ae96e55c9390aa015aa75bb1403c1a97680f6f4de565678f586b143865e +size 1111632 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 753bac6674..32d40c4452 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a6cb54d7dba06d46f04c37ceaec01d4bbe3c57e38f133ac0d57b5df94d0b293 -size 995054 +oid sha256:7a7c24159d80421ed4013df5aed62c6f7c051192e9b81292068d9c81d4602b1a +size 995504 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index dde0ffff51..2bd9ad0a99 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5416f109976a93d9a16301df67bc3cbeb39f647e21dc8ec8cb16cff990cdbee0 -size 4053563 +oid sha256:b9f61183d5740e2d281bc448a5aa503c6b0af857ba3687f1cfe2739bf6cf7eae +size 4053521 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 18d743fee5..8885335862 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99da3cd5f017ef72c67fc4838cd7b5bafbb0e51827c6a5eaf4c4c44bc984ce22 -size 566176 +oid sha256:49b259354e3a130088320f9cc3053a72f48598759d2bd564c5a8157152721fef +size 566104 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 2b006dd31b..9895d61b8b 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec404b6938a072d8380c5148201e772f8b4ff54bf2bf19bd27458eb84d21ab74 -size 2253502 +oid sha256:a8e2e752aaea5cc0f7049066d8972aca713b6340dc8d6f3887f516f41212392a +size 2253218 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index d0abaf7e49..e559eed7f6 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd5633598b65565e85f02ebe9e1a6b017f063360494bb467b2f7198a1a071e43 -size 663752 +oid sha256:ccfcd76424a779be5f8176eca414ef3a99432a9f7fc987ce3f73dbc33f371fc9 +size 663777 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 56541bf2be..c8206fd416 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1017551118894d999c142ae23a7afc51af6dd40c7a83b0c9dbf053f3b92eeb9a -size 3421839 +oid sha256:2be7219b30f04d71c117963b08cbaa20f8a9977a49e2d83be91d8835db0468c8 +size 3421195 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 774ef5258c..d71925b92b 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8790db6b6795c5d1a162c740b038d5b47c00b5c1cd1f332bb055d53aeea18e35 -size 564010 +oid sha256:e4283db5b65996692bd88a23566480e165b85a82091e91a1f1791a304a6e8d7e +size 564069 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index a2d654960c..bdd92e2fb0 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38a1aef2a70b9c8c7a362e4976a210c99c80211cb96f90f4bb9c627ba3368545 -size 2274172 +oid sha256:864bc7c595611e23f293464c49b8f978e4ebd3cdd61ac0e7ff694bd430ffcded +size 2274541 diff --git a/lib/search/indexes/github-docs-3.3-cn-records.json.br b/lib/search/indexes/github-docs-3.3-cn-records.json.br index 098a01b51e..812151fb90 100644 --- a/lib/search/indexes/github-docs-3.3-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.3-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d81e9fe8e09f778b16d079cdd0b04fd21b15b11e0ffe542acb161f3a428df0b -size 645586 +oid sha256:46cfd5b7c547ee6393401b5a88b6a42a17ea6c714352ae7db6dc2936a9379452 +size 645720 diff --git a/lib/search/indexes/github-docs-3.3-cn.json.br b/lib/search/indexes/github-docs-3.3-cn.json.br index 2b3ac9c548..eb305753dd 100644 --- a/lib/search/indexes/github-docs-3.3-cn.json.br +++ b/lib/search/indexes/github-docs-3.3-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56c6360fa37f170fd15e0f3d042a876532c7479c9b172b43c39f40767ae3dbcd -size 1123024 +oid sha256:abb804d758765c170906ec1c0d23d7ecd1a03be1b38a5bdafaff7be8a3901ea3 +size 1123322 diff --git a/lib/search/indexes/github-docs-3.3-en-records.json.br b/lib/search/indexes/github-docs-3.3-en-records.json.br index 9da87f7d01..000fd5fbb5 100644 --- a/lib/search/indexes/github-docs-3.3-en-records.json.br +++ b/lib/search/indexes/github-docs-3.3-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf5eac8a547a06c98f319639723965cdf420d639248c9ed7b33b9e10fd482b2e -size 1028179 +oid sha256:6f978502129bda7e85ca94d9dc5d63cd90966247f7929a6614c86958fd79073f +size 1028579 diff --git a/lib/search/indexes/github-docs-3.3-en.json.br b/lib/search/indexes/github-docs-3.3-en.json.br index c55af0c772..b0982c90ce 100644 --- a/lib/search/indexes/github-docs-3.3-en.json.br +++ b/lib/search/indexes/github-docs-3.3-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad52575b5f2141ad6ba7a7c84f1f6e8adefe0225d08902065c7c747bbaeae995 -size 4148366 +oid sha256:560d886d28d6ec05933b264a8c29071ef81fab1602bee78b61d07225b3c165d8 +size 4148638 diff --git a/lib/search/indexes/github-docs-3.3-es-records.json.br b/lib/search/indexes/github-docs-3.3-es-records.json.br index 0baf406753..118bbc920d 100644 --- a/lib/search/indexes/github-docs-3.3-es-records.json.br +++ b/lib/search/indexes/github-docs-3.3-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02301ff7fea7aee8fb3a16dbc54fd93767e1e3634c8b7171dc9f78f40b071291 -size 569189 +oid sha256:ce70d91c384a795f3c7e7b6c9804c599dc7356f5df13243fb551c077ce429844 +size 569100 diff --git a/lib/search/indexes/github-docs-3.3-es.json.br b/lib/search/indexes/github-docs-3.3-es.json.br index f89a14df83..67dc39f81e 100644 --- a/lib/search/indexes/github-docs-3.3-es.json.br +++ b/lib/search/indexes/github-docs-3.3-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:742cb995e2b5c0a2ebd46c7d4a02d00960db1c4b87d5fd58ecb732fbfcbc8606 -size 2266701 +oid sha256:20e31250522c5804a0c8302f05d4d6e32483ea6f43962fa412a162c6a19eb07f +size 2266112 diff --git a/lib/search/indexes/github-docs-3.3-ja-records.json.br b/lib/search/indexes/github-docs-3.3-ja-records.json.br index 6617724ce3..bfb3a0ff24 100644 --- a/lib/search/indexes/github-docs-3.3-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.3-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45e6c4b99c9b33436989092e019df2d21bbac76da460eb54c5298afc5ab4be7c -size 666329 +oid sha256:52a0707ac92ec55128cc220cd089769aa3660b409150a13bb72fda6d9f11f15c +size 666298 diff --git a/lib/search/indexes/github-docs-3.3-ja.json.br b/lib/search/indexes/github-docs-3.3-ja.json.br index 6874bf1848..eb9a0d879c 100644 --- a/lib/search/indexes/github-docs-3.3-ja.json.br +++ b/lib/search/indexes/github-docs-3.3-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2298dfcca5a52f796b1ae048a604ffd0c4b5ddfb55c9b3f2a9ef0a5520f58eaa -size 3438847 +oid sha256:dc4250f7f711da2a30194d2a91945a098feae7a37c524fc0565f753d60dc1ea5 +size 3437333 diff --git a/lib/search/indexes/github-docs-3.3-pt-records.json.br b/lib/search/indexes/github-docs-3.3-pt-records.json.br index bfb4fd1e3d..1a69e54482 100644 --- a/lib/search/indexes/github-docs-3.3-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.3-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff2684fd284d9432a10f54c06ec98128f4f7ffe2bbbffa4352599f8dca38ad60 -size 566660 +oid sha256:3a4d2de7c21719eb48a257ecd162ada6d25944ab091c9534bd856858d1658e9d +size 566618 diff --git a/lib/search/indexes/github-docs-3.3-pt.json.br b/lib/search/indexes/github-docs-3.3-pt.json.br index 7a2ab6ae0c..6ae49abb28 100644 --- a/lib/search/indexes/github-docs-3.3-pt.json.br +++ b/lib/search/indexes/github-docs-3.3-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9615804ab00df6f9d36c04a6fa7386731fe3d6f3c939ac27486602038b26d70 -size 2283574 +oid sha256:82bc866bb7661a9cbbf1c902029013f9159f8d3c7aae4357a6d2ef9e4b0478e4 +size 2285086 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index ba95e6ea35..26728d5c09 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6fd9bcc0c060e321c124757b13f8b641dbe39924c84f037829df5939fd50414a -size 868975 +oid sha256:ff3bf1c9ca20a373039222706a4cc8eb505a72e7d7069629bcd5eefc69749d0c +size 869035 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 603a0244d1..859433faa1 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09dd9d9e3cff0dfe5520d799d8418999248894dad4d40293e14d0a7fc4722c3b -size 1360414 +oid sha256:6389767070419dabebc8958ea1ce922702bdda38d7b633c111515286da660c64 +size 1360867 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 1f973ca349..41db0544d5 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a828e5a33c7f3403534b8e47e2fc09ab6273f2e7b47475151bd90831756bfdfc -size 1325357 +oid sha256:2a0cf9b5557881a7a8f611806729810e1cb78d0237ea861ec4f45d4f2df65595 +size 1326664 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index d048bb7f74..7f68e97028 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd02bfaf821de3d7f1ed949e42a232117b6a38335d1ce15b7e29327fe59659c6 -size 5059179 +oid sha256:f0de89bf3e3a19f1c0926c89d116edf39b2b92fb3b62bf8a93731732be5d1208 +size 5062798 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index b23bc13f57..09a0dbcd81 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:484b9c3648953695ee965ece8ea42876f8c438c591b0f196c4471b60bfd6219c -size 753952 +oid sha256:07f53107faa44813662da5aeafc2a17a098ba6995a026f216e5a60ba5f4c1204 +size 754187 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 89d5929b12..7973c8e6ae 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcd346e5264141eefaa7057e8f40528ab5a0c6cc8f126a741673643c287f80a4 -size 2888512 +oid sha256:f5531def883058ecfc4e72e9536068295e5c0ac1db9ab6f8fe5fdf230cf43dbe +size 2890039 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index e0ce18a466..88c756b61d 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b472d7091541ce316bc8d6611e530ca61e93ea699e24a958b7d6b6b5d4b0ca70 -size 889635 +oid sha256:b8035c3eeba39274e0c4ed904ea0c0963be8ab319a580318f81b60171d2710f8 +size 889675 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 4aa27eeef8..d035e27242 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3ae213eb821c613e18d54277928f037675f2d3761f70cca7d9880e05482cc11 -size 4447248 +oid sha256:0b8bd63e8688bc6e09658255ba408bbccdfb755c4a98653b6645dd717c5b20fe +size 4447374 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 814880efe5..fd012c202d 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:285993a25693909cbecea61450aad4bba327c19a77fc7ba3a04b023d4322ae01 -size 755199 +oid sha256:0a63920d7b87d8f3af07ba5473c5dd4909eb5a2309d83b41a69aaf49a42edefd +size 755356 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index c1b3721360..f382431c57 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e346d1ebe05138701fa0c97ff50f7df54477499dbd414a3627e48caf0286bb8b -size 2935216 +oid sha256:bd144b14670434b122239d66f6813fcfa27b55ce5a71ce7734a2e5e75734bd76 +size 2935342 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 98d8e5484d..a7ac2a2c55 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b14e9f8801f8b18b906b564292c44f28cc3c2695bff11f89deffda53b0624ef -size 493466 +oid sha256:9066469b73737ed84420ba9a734603a9c50a5c350105397605fd5dd371e01371 +size 493445 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index c33830d0d1..a3300a5f95 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad706c8be807c1eed65efb5a1e5b0df34b895b81b72bdb7d4f347207d5952658 -size 828661 +oid sha256:2097dfc76eeda3c23c2793ff59afe477f8a310d4ba7e7c282808babd33e08366 +size 828981 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index eb07ac1c6b..e8f083dbce 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:950b821bcf1d3d593c213710f06747971ef7f16cacc843484265f0ae2cfe9b91 -size 795034 +oid sha256:bf8ed4908cef5a08623641b96d1fccd457f8a6bb75d7b8b8e4c3550f782691de +size 795441 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 3742185bbc..9d78e92999 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:879f87e7188b47bf14f108ca4c1a7054988715094825d9c27f9b83f52b358ed1 -size 3194957 +oid sha256:640e293b1d19a83eeef36a0ad52dd5475626012b55a310f4dc4caac05125c3f5 +size 3196139 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index c658c6dce6..a60e9337ae 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a73175025c3f1c9b7c1679e5881fdf113525c0fd6df58325b5ad14ed06133185 -size 435065 +oid sha256:e063efcd8ff5d928cfdb598ef9463c7945a9ba0e8319523f92c44b59f17aca50 +size 434991 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 47894ee623..4a688ace53 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb6d831b53d417c92f033e60aef757643f391cb05e630a4ee629f201e76ca455 -size 1660563 +oid sha256:031f6bff1f973e13763ef1e41b94184c092dab473edce6d119fb7fdbcee60cd0 +size 1660400 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 019bb63a5d..dcb912efb6 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eab9983767d2aa78dc2be112a479fc0dede89e9c18b079952270b36d9420a3d4 -size 509301 +oid sha256:7056f5a88bb29f4f8b3de47fcd1698c220f0fcf931867e78c55d54e86d95b639 +size 509247 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 0ee0c2eacd..d632d1057a 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:311c5426cc90cf446d983ecbe3b0b0561e9ceaaf1fddddd0a0b92904dbb01590 -size 2519219 +oid sha256:348277fc15f1557f36132ebb5b0aa1af2f48c26a82623b171632f18bde7a5014 +size 2519400 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 690372e493..7e252ac08a 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1628837492c7a6580dd04979012c5ffe29b0265b15b7b821beb9904fd694742 -size 434470 +oid sha256:12eb8f304b1f6710c3cbba5ff1af309d01e98b0f23d2d1cb1b7eaf78ce4d1682 +size 434372 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 02603f01c9..c955df8fda 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73a65644734d8fb8feaf587d1e525a16d77e5cd23d38e327189f6fe5ea8b2056 -size 1677911 +oid sha256:207f7c8ccb25dfbc18cfaffe433b99487b2d6c1c98d28cae3c1dfc8850b188bc +size 1677411 diff --git a/lib/search/indexes/github-docs-ghec-cn-records.json.br b/lib/search/indexes/github-docs-ghec-cn-records.json.br index f5e20ae91a..c70ad58101 100644 --- a/lib/search/indexes/github-docs-ghec-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghec-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5710b7b1513952b2ecedcfc2023c786a8bbf8890fb9ab86adb493b6972b9a03d -size 764096 +oid sha256:4f2460f768218f873946cf76a1dbba39272b21fe6019314089bf4b83dda5f359 +size 763279 diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br index d9e3fd3487..a4c1b49421 100644 --- a/lib/search/indexes/github-docs-ghec-cn.json.br +++ b/lib/search/indexes/github-docs-ghec-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4b605233e7f036ba8ef0c23c097c56cafd48e01e137b273fca3a642df142fc0 -size 1351080 +oid sha256:cfe9eb6e900f4e684f84055d7ef30219133888978438a450ca35896d89e0ed75 +size 1349504 diff --git a/lib/search/indexes/github-docs-ghec-en-records.json.br b/lib/search/indexes/github-docs-ghec-en-records.json.br index 87acccf754..94b7271742 100644 --- a/lib/search/indexes/github-docs-ghec-en-records.json.br +++ b/lib/search/indexes/github-docs-ghec-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:119d255db6153bf56ef903f2ef891d113110d2c874be552b6c8efc0f46f75f19 -size 1163805 +oid sha256:670729c3b36a69441538ef5980d766a9d2c7cd4637fd30b587804ff7988fb67b +size 1169605 diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br index 0bc594635f..a21e2b7dc7 100644 --- a/lib/search/indexes/github-docs-ghec-en.json.br +++ b/lib/search/indexes/github-docs-ghec-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:238630e33f3f5c37a9313dcc00cf7f1c6a7a873373e3bf20fc13d7e5b21a46e8 -size 4715066 +oid sha256:47dbdd48b4928a0b61c3382086870fd3ed24d044c9c916fc13b2b3ec2a231655 +size 4719307 diff --git a/lib/search/indexes/github-docs-ghec-es-records.json.br b/lib/search/indexes/github-docs-ghec-es-records.json.br index dd8949f381..782be268f3 100644 --- a/lib/search/indexes/github-docs-ghec-es-records.json.br +++ b/lib/search/indexes/github-docs-ghec-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ecc437a3a6c0b493606a80eaf4911d58418e47a7ec6fb2a5198a0164113a6c28 -size 688583 +oid sha256:f257f85a1ec316221d8624f4b239ad12a3cde076136e49c60b8d82b7efe37ff7 +size 687762 diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br index 41c4b8ab72..e208f82a0f 100644 --- a/lib/search/indexes/github-docs-ghec-es.json.br +++ b/lib/search/indexes/github-docs-ghec-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a312a4c97127ad61861391ce67d1fbc9a11832818a4cda4cce0452cce03e9fe1 -size 2769104 +oid sha256:4b44277648a8b919fb0b274479dad3d5ae41540654814ffc6504149a5944b441 +size 2766943 diff --git a/lib/search/indexes/github-docs-ghec-ja-records.json.br b/lib/search/indexes/github-docs-ghec-ja-records.json.br index f2c9b735ce..5d4162a113 100644 --- a/lib/search/indexes/github-docs-ghec-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghec-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4228d495b15338afabd7829c5eff7bacb5e741aa02b51acf26fb6c9953966906 -size 790062 +oid sha256:7caff9eaec4e458059ee44af1f39b3ae92c49bbfa199ef3aeb2fb743b00e00a6 +size 788808 diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br index bd9df06ac6..25dfb830f4 100644 --- a/lib/search/indexes/github-docs-ghec-ja.json.br +++ b/lib/search/indexes/github-docs-ghec-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8027300e9cf57f6cf5425df2a06dcd31661f92141fef0528ef1c50ded4f0d79a -size 4146607 +oid sha256:e2ff154a1dc5e0a87b046cbaa5be20dcb23586f55bfe807f3046d10c479700df +size 4140990 diff --git a/lib/search/indexes/github-docs-ghec-pt-records.json.br b/lib/search/indexes/github-docs-ghec-pt-records.json.br index 8b5fd7f7d6..f7b47837a3 100644 --- a/lib/search/indexes/github-docs-ghec-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghec-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:033857e8d16e9cb4c78e499ebc335e620611e4a61321d54a9db0f6495608f2a5 -size 687320 +oid sha256:ace2d84394aaaab7aa7a0a8af7c6c85aec3d9d225ba85ba5cdee69a303eeda97 +size 686485 diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br index 105703474c..c67d8e8e60 100644 --- a/lib/search/indexes/github-docs-ghec-pt.json.br +++ b/lib/search/indexes/github-docs-ghec-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea4d13d5116838c986e8eac0fd9c4860291a586649ede92eab038802957c2135 -size 2796247 +oid sha256:5889ed8314377df96ad5f9e2cb437abbdb0599416cff8687ac56226d76b862da +size 2794108 diff --git a/lib/search/lunr-search.js b/lib/search/lunr-search.js index 75f02a863f..3d39f77350 100644 --- a/lib/search/lunr-search.js +++ b/lib/search/lunr-search.js @@ -88,6 +88,25 @@ export default async function loadLunrResults({ version, language, query, limit // want to make sure this number accounts for that. const TITLE_FIRST = queryLength <= 2 ? 45 : queryLength <= 6 ? 25 : 10 + // Multiplication bonus given to matches that were made on the + // the search where ALL tokens are required. + // E.g. you search for 'foo bar' and we have three records: + // + // A) "This foo is very special" + // B) "With bar and foo you can't go wrong" + // C) "Only bar can save you" + // + // What will happen is that it only finds record (B) when it's + // requires to match both 'foo' *and* 'bar'. So you get these scores: + // + // A) score = result.score + popularity + // B) score = MATCH_PHRASE * (result.score + popularity) + // C) score = result.score + popularity + // + // So it's very powerful multiplier. But that's fine because a + // "phrase match" is a very accurate thing. + const MATCH_PHRASE = 5 + // Imagine that we have 1,000 documents. 100 of them contain the word // 'foobar'. Of those 100, we want to display the top 10 "best". // But if we only do `lunrindex.search('foobar').slice(0, 10)` we @@ -101,28 +120,84 @@ export default async function loadLunrResults({ version, language, query, limit // records that we finally return. const PRE_LIMIT = 500 - let titleQuery = query.trim() - if (titleQuery.length <= 3 && !titleQuery.endsWith('*s')) { - // When the search input is really short, force it to search with - // the "forward wild card". I.e. you typed `go` we turn it into a - // search for `go*` which means it can find things like `Google`. - titleQuery += '*' - } + const titleQuery = query.trim() let highestTitleScore = 0.0 + + const andTitleResults = [] + + // This will turn something like 'foo and bar' into: + // [ + // { str: 'foo', metadata: { position: [Array], index: 0 } }, + // { str: 'bar', metadata: { position: [Array], index: 1 } } + // ] + // Note how the stopword gets omitted. + // It's important to omit the stopwords because even if the record + // actually contains the stopword, it won't match then. + // E.g. you have a record called "Foo And Bar" and you search for + // {foo AND and AND bar} it will actually not find anything. + // But if you change it to {foo AND bar} it will match "Foo And Bar" + // Same goes if any other stopwords were used like "Foo the Bar with for a". + // That also needs to become an AND-search of {foo AND bar} ...only. + const titleQueryTokenized = lunr.tokenizer(titleQuery).filter(lunr.stopWordFilter) + + if (titleQueryTokenized.length > 1) { + andTitleResults.push( + ...index + .query((q) => { + for (const { str } of titleQueryTokenized) { + q.term(str, { fields: ['title'], presence: lunr.Query.presence.REQUIRED }) + } + }) + .slice(0, PRE_LIMIT) + .map((result) => { + const { popularity } = records[result.ref] + if (result.score > highestTitleScore) { + highestTitleScore = result.score + } + const score = result.score / highestTitleScore + return { + result, + _score: MATCH_PHRASE * TITLE_FIRST * (score + POPULARITY_FACTOR * (popularity || 0.0)), + } + }) + ) + } + const titleResults = index .query((q) => { - if (/['"]/.test(titleQuery)) { - // If the query contains a quotation marks, you can't easily - // enough break it up into individual words. - q.term(titleQuery, { fields: ['title'] }) - } else { - // This is the structured way of doing turning 'foo bar' - // into `title:foo title:bar'. - titleQuery.split(/ /g).forEach((part) => { - q.term(part, { fields: ['title'] }) + // The objective is to create an OR-query specifically for the 'title' + // because *we* value matches on that much higher than any other + // field in our records. + // But we want to make sure that the last word is always treated + // like a forward-tokenized token. I.e. you typed "google ku" + // becomes a search for "google ku*". + // Note that it's import that use the `lunr.tokenizer()` function when + // using the `index.query()` function because, for starters, it will + // normalize the input. + // If you use `index.search()` is the higher abstraction of basically + // doing this: + // (pseudo code) + // + // Index.prototype.search = function(input) { + // lunr.tokenize(input).forEach(token => { + // Index.query(callback => { + // callback(token) + // }) + // }) + // } + // + // If we didn't use the tokenized form, we'd get different results + // for searching for "SSH agent" and "ssh AgenT" for example. + titleQueryTokenized.forEach(({ str }, i) => { + const isLastToken = i === titleQueryTokenized.length - 1 + const isShort = str.length <= 3 + q.term(str, { + fields: ['title'], + wildcard: + isLastToken && isShort ? lunr.Query.wildcard.TRAILING : lunr.Query.wildcard.NONE, }) - } + }) }) .slice(0, PRE_LIMIT) .map((result) => { @@ -170,7 +245,7 @@ export default async function loadLunrResults({ version, language, query, limit const _unique = new Set() const combinedMatchData = {} const results = [] - for (const matches of [titleResults, allResults]) { + for (const matches of [andTitleResults, titleResults, allResults]) { for (const match of matches) { const { result } = match // We need to loop over all results (both from title searches and diff --git a/lib/warm-server.js b/lib/warm-server.js index 5a83a59327..5f116d7d16 100644 --- a/lib/warm-server.js +++ b/lib/warm-server.js @@ -32,6 +32,7 @@ async function warmServer() { const redirects = await dog.loadRedirects(pageList) statsd.gauge('num_redirects', Object.keys(redirects).length) + statsd.gauge('num_page_map', Object.keys(pageMap).length) statsd.gauge('num_page_list', Object.keys(pageList).length) if (process.env.NODE_ENV !== 'test') { diff --git a/lib/webhooks/static/dotcom/workflow_job.payload.json b/lib/webhooks/static/dotcom/workflow_job.payload.json index d4a5773696..b74dd5486b 100644 --- a/lib/webhooks/static/dotcom/workflow_job.payload.json +++ b/lib/webhooks/static/dotcom/workflow_job.payload.json @@ -1,5 +1,5 @@ { - "action": "queued", + "action": "in_progress", "workflow_job": { "id": 2832853555, "run_id": 940463255, @@ -8,13 +8,20 @@ "head_sha": "e3103f8eb03e1ad7f2331c5446b23c070fc54055", "url": "https://api.github.com/repos/octo-org/example-workflow/actions/jobs/2832853555", "html_url": "https://github.com/octo-org/example-workflow/runs/2832853555", - "status": "queued", + "status": "in_progress", "conclusion": null, "started_at": "2021-06-15T19:22:27Z", "completed_at": null, "name": "Test workflow", "steps": [ - + { + "name": "Set up job", + "status": "in_progress", + "conclusion": null, + "number": 1, + "started_at": "2021-06-15T19:22:27.000Z", + "completed_at": null + } ], "check_run_url": "https://api.github.com/repos/octo-org/example-workflow/check-runs/2832853555", "labels": [ diff --git a/middleware/events.js b/middleware/events.js index 11e8b9a373..a87d17580d 100644 --- a/middleware/events.js +++ b/middleware/events.js @@ -19,15 +19,11 @@ router.post('/', async function postEvents(req, res, next) { return res.status(400).json(isDev ? ajv.errorsText() : {}) } - if (req.hydro.maySend()) { - // intentionally don't await this async request - // so that the http response afterwards is sent immediately - req.hydro.publish(hydroNames[fields.type], omit(fields, OMIT_FIELDS)).catch((e) => { - if (isDev) console.error(e) - }) - } + res.json({}) - return res.status(200).json({}) + if (req.hydro.maySend()) { + await req.hydro.publish(hydroNames[fields.type], omit(fields, OMIT_FIELDS)) + } }) export default router diff --git a/package-lock.json b/package-lock.json index 011170375d..83ea943afd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,6 +8,7 @@ "license": "(MIT AND CC-BY-4.0)", "dependencies": { "@alex_neo/jest-expect-message": "^1.0.5", + "@github/failbot": "0.7.0", "@hapi/accept": "^5.0.2", "@primer/components": "^31.1.0", "@primer/css": "^18.2.0", @@ -80,7 +81,7 @@ "remark-gfm": "^3.0.1", "remark-parse": "^10.0.0", "remark-parse-no-trim": "^8.0.4", - "remark-rehype": "^10.0.0", + "remark-rehype": "^10.0.1", "revalidator": "^0.3.1", "rss-parser": "^3.12.0", "scroll-anchoring": "^0.1.0", @@ -88,6 +89,7 @@ "slash": "^4.0.0", "strip-html-comments": "^1.0.0", "styled-components": "^5.3.3", + "swr": "1.0.1", "throng": "^5.0.0", "ts-dedent": "^2.2.0", "unified": "^10.1.0", @@ -134,7 +136,7 @@ "eslint-config-prettier": "^8.3.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", "event-to-promise": "^0.8.0", @@ -158,7 +160,7 @@ "mock-express-response": "^0.3.0", "mockdate": "^3.0.5", "nock": "^13.2.1", - "nodemon": "^2.0.14", + "nodemon": "^2.0.15", "npm-merge-driver-install": "^2.0.1", "object-hash": "^2.2.0", "postcss": "^8.3.11", @@ -1888,9 +1890,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", - "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==", "dependencies": { "regenerator-runtime": "^0.13.4" }, @@ -2084,6 +2086,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@github/failbot": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@github/failbot/-/failbot-0.7.0.tgz", + "integrity": "sha512-5wegzhUw5iFg9uPk4vsgXEB8j6vugcR0k9kOm0MEBlpwdQfs/gOx9nQj/2MpHRGSjY+OwBjVIcGJItEu9vM0Dw==", + "engines": { + "node": ">= 14.x", + "npm": ">= 7.x" + } + }, "node_modules/@graphql-inspector/core": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/@graphql-inspector/core/-/core-2.9.0.tgz", @@ -4898,9 +4909,9 @@ "dev": true }, "node_modules/axe-core": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.3.tgz", - "integrity": "sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA==", + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz", + "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==", "dev": true, "engines": { "node": ">=4" @@ -8630,28 +8641,29 @@ "dev": true }, "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", - "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", "dev": true, "dependencies": { - "@babel/runtime": "^7.11.2", + "@babel/runtime": "^7.16.3", "aria-query": "^4.2.2", - "array-includes": "^3.1.1", + "array-includes": "^3.1.4", "ast-types-flow": "^0.0.7", - "axe-core": "^4.0.2", + "axe-core": "^4.3.5", "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.6", - "emoji-regex": "^9.0.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", "has": "^1.0.3", - "jsx-ast-utils": "^3.1.0", - "language-tags": "^1.0.5" + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" }, "engines": { "node": ">=4.0" }, "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, "node_modules/eslint-plugin-node": { @@ -9549,9 +9561,9 @@ } }, "node_modules/find-process": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.4.tgz", - "integrity": "sha512-rRSuT1LE4b+BFK588D2V8/VG9liW0Ark1XJgroxZXI0LtwmQJOb490DvDYvbm+Hek9ETFzTutGfJ90gumITPhQ==", + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.5.tgz", + "integrity": "sha512-v11rJYYISUWn+s8qZzgGnBvlzRKf3bOtlGFM8H0kw56lGQtOmLuLCzuclA5kehA2j7S5sioOWdI4woT3jDavAw==", "optional": true, "dependencies": { "chalk": "^4.0.0", @@ -9769,6 +9781,19 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "devOptional": true }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -15481,21 +15506,21 @@ } }, "node_modules/nodemon": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.14.tgz", - "integrity": "sha512-frcpDx+PviKEQRSYzwhckuO2zoHcBYLHI754RE9z5h1RGtrngerc04mLpQQCPWBkH/2ObrX7We9YiwVSYZpFJQ==", + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz", + "integrity": "sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA==", "dev": true, "hasInstallScript": true, "dependencies": { - "chokidar": "^3.2.2", - "debug": "^3.2.6", + "chokidar": "^3.5.2", + "debug": "^3.2.7", "ignore-by-default": "^1.0.1", "minimatch": "^3.0.4", - "pstree.remy": "^1.1.7", + "pstree.remy": "^1.1.8", "semver": "^5.7.1", "supports-color": "^5.5.0", "touch": "^3.1.0", - "undefsafe": "^2.0.3", + "undefsafe": "^2.0.5", "update-notifier": "^5.1.0" }, "bin": { @@ -15509,6 +15534,27 @@ "url": "https://opencollective.com/nodemon" } }, + "node_modules/nodemon/node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, "node_modules/nodemon/node_modules/debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", @@ -15527,6 +15573,18 @@ "node": ">=4" } }, + "node_modules/nodemon/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, "node_modules/nodemon/node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -16808,9 +16866,9 @@ } }, "node_modules/parse-headers": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", - "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.4.tgz", + "integrity": "sha512-psZ9iZoCNFLrgRjZ1d8mn0h9WRqJwFxM9q3x7iUjN/YT2OksthDJ5TiPCu2F38kS4zutqfW+YdVVkBZZx3/1aw==", "optional": true }, "node_modules/parse-json": { @@ -18642,9 +18700,9 @@ } }, "node_modules/remark-rehype": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.0.0.tgz", - "integrity": "sha512-WgvJFpfRLfnyHGvQaMgLXVfaXIXVA9FFo7tSky0omLLukZvDJdobZ2V/wYGd2xlScPVZNx6/99fb5kLFT2uFWQ==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.0.1.tgz", + "integrity": "sha512-9itJLLOrbjrAi0qO5Rh0Wzi1d3eqvRvDWSsfif6W/BInVgCvzqSnB7BSfQRtb6MLfQiufXYG3NbbUqfE0p7nTA==", "dependencies": { "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", @@ -20699,6 +20757,17 @@ "node": ">=8" } }, + "node_modules/swr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/swr/-/swr-1.0.1.tgz", + "integrity": "sha512-EPQAxSjoD4IaM49rpRHK0q+/NzcwoT8c0/Ylu/u3/6mFj/CWnQVjNJ0MV2Iuw/U+EJSd2TX5czdAwKPYZIG0YA==", + "dependencies": { + "dequal": "2.0.2" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -24043,9 +24112,9 @@ } }, "@babel/runtime": { - "version": "7.15.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", - "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -24201,6 +24270,11 @@ } } }, + "@github/failbot": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@github/failbot/-/failbot-0.7.0.tgz", + "integrity": "sha512-5wegzhUw5iFg9uPk4vsgXEB8j6vugcR0k9kOm0MEBlpwdQfs/gOx9nQj/2MpHRGSjY+OwBjVIcGJItEu9vM0Dw==" + }, "@graphql-inspector/core": { "version": "2.9.0", "resolved": "https://registry.npmjs.org/@graphql-inspector/core/-/core-2.9.0.tgz", @@ -26544,9 +26618,9 @@ "dev": true }, "axe-core": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.3.tgz", - "integrity": "sha512-/lqqLAmuIPi79WYfRpy2i8z+x+vxU3zX2uAm0gs1q52qTuKwolOj1P8XbufpXcsydrpKx2yGn2wzAnxCMV86QA==", + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz", + "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==", "dev": true }, "axios": { @@ -29697,22 +29771,23 @@ } }, "eslint-plugin-jsx-a11y": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", - "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", "dev": true, "requires": { - "@babel/runtime": "^7.11.2", + "@babel/runtime": "^7.16.3", "aria-query": "^4.2.2", - "array-includes": "^3.1.1", + "array-includes": "^3.1.4", "ast-types-flow": "^0.0.7", - "axe-core": "^4.0.2", + "axe-core": "^4.3.5", "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.6", - "emoji-regex": "^9.0.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", "has": "^1.0.3", - "jsx-ast-utils": "^3.1.0", - "language-tags": "^1.0.5" + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" } }, "eslint-plugin-node": { @@ -30326,9 +30401,9 @@ } }, "find-process": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.4.tgz", - "integrity": "sha512-rRSuT1LE4b+BFK588D2V8/VG9liW0Ark1XJgroxZXI0LtwmQJOb490DvDYvbm+Hek9ETFzTutGfJ90gumITPhQ==", + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.5.tgz", + "integrity": "sha512-v11rJYYISUWn+s8qZzgGnBvlzRKf3bOtlGFM8H0kw56lGQtOmLuLCzuclA5kehA2j7S5sioOWdI4woT3jDavAw==", "optional": true, "requires": { "chalk": "^4.0.0", @@ -30486,6 +30561,12 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "devOptional": true }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -34781,23 +34862,39 @@ } }, "nodemon": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.14.tgz", - "integrity": "sha512-frcpDx+PviKEQRSYzwhckuO2zoHcBYLHI754RE9z5h1RGtrngerc04mLpQQCPWBkH/2ObrX7We9YiwVSYZpFJQ==", + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz", + "integrity": "sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA==", "dev": true, "requires": { - "chokidar": "^3.2.2", - "debug": "^3.2.6", + "chokidar": "^3.5.2", + "debug": "^3.2.7", "ignore-by-default": "^1.0.1", "minimatch": "^3.0.4", - "pstree.remy": "^1.1.7", + "pstree.remy": "^1.1.8", "semver": "^5.7.1", "supports-color": "^5.5.0", "touch": "^3.1.0", - "undefsafe": "^2.0.3", + "undefsafe": "^2.0.5", "update-notifier": "^5.1.0" }, "dependencies": { + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", @@ -34813,6 +34910,15 @@ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -35827,9 +35933,9 @@ } }, "parse-headers": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", - "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.4.tgz", + "integrity": "sha512-psZ9iZoCNFLrgRjZ1d8mn0h9WRqJwFxM9q3x7iUjN/YT2OksthDJ5TiPCu2F38kS4zutqfW+YdVVkBZZx3/1aw==", "optional": true }, "parse-json": { @@ -37232,9 +37338,9 @@ } }, "remark-rehype": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.0.0.tgz", - "integrity": "sha512-WgvJFpfRLfnyHGvQaMgLXVfaXIXVA9FFo7tSky0omLLukZvDJdobZ2V/wYGd2xlScPVZNx6/99fb5kLFT2uFWQ==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.0.1.tgz", + "integrity": "sha512-9itJLLOrbjrAi0qO5Rh0Wzi1d3eqvRvDWSsfif6W/BInVgCvzqSnB7BSfQRtb6MLfQiufXYG3NbbUqfE0p7nTA==", "requires": { "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", @@ -38850,6 +38956,14 @@ "supports-color": "^7.0.0" } }, + "swr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/swr/-/swr-1.0.1.tgz", + "integrity": "sha512-EPQAxSjoD4IaM49rpRHK0q+/NzcwoT8c0/Ylu/u3/6mFj/CWnQVjNJ0MV2Iuw/U+EJSd2TX5czdAwKPYZIG0YA==", + "requires": { + "dequal": "2.0.2" + } + }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", diff --git a/package.json b/package.json index e0f5368c33..fd731077da 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ ], "dependencies": { "@alex_neo/jest-expect-message": "^1.0.5", + "@github/failbot": "0.7.0", "@hapi/accept": "^5.0.2", "@primer/components": "^31.1.0", "@primer/css": "^18.2.0", @@ -82,7 +83,7 @@ "remark-gfm": "^3.0.1", "remark-parse": "^10.0.0", "remark-parse-no-trim": "^8.0.4", - "remark-rehype": "^10.0.0", + "remark-rehype": "^10.0.1", "revalidator": "^0.3.1", "rss-parser": "^3.12.0", "scroll-anchoring": "^0.1.0", @@ -90,6 +91,7 @@ "slash": "^4.0.0", "strip-html-comments": "^1.0.0", "styled-components": "^5.3.3", + "swr": "1.0.1", "throng": "^5.0.0", "ts-dedent": "^2.2.0", "unified": "^10.1.0", @@ -136,7 +138,7 @@ "eslint-config-prettier": "^8.3.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", "event-to-promise": "^0.8.0", @@ -160,7 +162,7 @@ "mock-express-response": "^0.3.0", "mockdate": "^3.0.5", "nock": "^13.2.1", - "nodemon": "^2.0.14", + "nodemon": "^2.0.15", "npm-merge-driver-install": "^2.0.1", "object-hash": "^2.2.0", "postcss": "^8.3.11", diff --git a/pages/storybook.tsx b/pages/storybook.tsx index 93c2f7965b..fa589d5522 100644 --- a/pages/storybook.tsx +++ b/pages/storybook.tsx @@ -9,6 +9,7 @@ import { } from 'components/ui/MarkdownContent/MarkdownContent' import { ScrollButton, ScrollButtonPropsT } from 'components/ui/ScrollButton/ScrollButton' import { TruncateLines, TruncateLinesPropsT } from 'components/ui/TruncateLines/TruncateLines' +import { Picker, PickerPropsT } from 'components/ui/Picker/Picker' const markdownExample = ( <> @@ -131,6 +132,29 @@ const stories = [ component: MarkdownContent, variants: [{ children: markdownExample } as MarkdownContentPropsT], }, + { + name: 'Picker', + component: Picker, + variants: [ + { + defaultText: 'Choose color', + options: [ + { text: 'Red', item: Red }, + { text: 'Green', item: Green }, + { text: 'Blue', item: Blue }, + ], + } as PickerPropsT, + { + defaultText: 'Choose color', + variant: 'inline', + options: [ + { text: 'Red', item: Red }, + { text: 'Green', item: Green }, + { text: 'Blue', item: Blue }, + ], + } as PickerPropsT, + ], + }, { name: 'ScrollButton', component: ScrollButton, @@ -155,7 +179,7 @@ function displayProps(props: Object) { const xprops = Object.fromEntries( Object.entries(props).map(([key, value]) => [ key, - key === 'children' ? ReactDomServer.renderToString(value) : value, + React.isValidElement(value) ? ReactDomServer.renderToString(value) : value, ]) ) return JSON.stringify(xprops, null, 2) @@ -169,7 +193,7 @@ export default function Storybook() {