Skip to main content
ドキュメントには� �繁に更新が� えられ、その都度公開されています。本ページの翻訳はま� 未完成な部分があることをご了承く� さい。最新の情� �については、英語のドキュメンテーションをご参照く� さい。本ページの翻訳に問題がある� �合はこちらまでご連絡く� さい。

このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2022-06-03. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの改善、新機能のためには、最新バージョンのGitHub Enterpriseにアップグレードしてく� さい。 アップグレードに関する支援については、GitHub Enterprise supportに連絡してく� さい。

クエリ

クエリについて

すべてのGraphQLスキーマは、クエリとミューテーションの両方についてルート型を持っています。 クエリ型は、サーバーからデータを取り出すGraphQLの操作を定義します。

詳しい情� �については「クエリについて」を参照してく� さい。

注釈: For user-to-server GitHub Appリクエストの� �合は、Issueとプルリクエストに別々のクエリを使用する必要があります。 たとえば、is:issueまたはis:pull-requestフィルタと、それと同等のフィルタを使用します。 search接続を使用してIssueとプルリクエストの組み合わせを1つのクエリで返すと、ノードのセットが空になります。

コネクション

organizations

種類: OrganizationConnection!

A list of organizations.

引数

名前 説明

after (String)

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

before (String)

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

first (Int)

Returns the first n elements from the list.

last (Int)

Returns the last n elements from the list.

search

種類: SearchResultItemConnection!

Perform a search across resources.

引数

名前 説明

after (String)

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

before (String)

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

first (Int)

Returns the first n elements from the list.

last (Int)

Returns the last n elements from the list.

query (String!)

The search string to look for.

type (SearchType!)

The types of search items to search within.

securityAdvisories

種類: SecurityAdvisoryConnection!

GitHub Security Advisories.

引数

名前 説明

after (String)

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

before (String)

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

first (Int)

Returns the first n elements from the list.

last (Int)

Returns the last n elements from the list.

publishedSince (DateTime)

Filter advisories to those published since a time in the past.

updatedSince (DateTime)

Filter advisories to those updated since a time in the past.

securityVulnerabilities

種類: SecurityVulnerabilityConnection!

Software Vulnerabilities documented by GitHub Security Advisories.

引数

名前 説明

after (String)

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

before (String)

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

ecosystem (SecurityAdvisoryEcosystem)

An ecosystem to filter vulnerabilities by.

first (Int)

Returns the first n elements from the list.

last (Int)

Returns the last n elements from the list.

package (String)

A package name to filter vulnerabilities by.

severities ([SecurityAdvisorySeverity!])

A list of severities to filter vulnerabilities by.

users

種類: UserConnection!

A list of users.

引数

名前 説明

after (String)

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

before (String)

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

first (Int)

Returns the first n elements from the list.

last (Int)

Returns the last n elements from the list.

フィールド

codeOfConduct

種類: CodeOfConduct

Look up a code of conduct by its key.

引数

名前 説明

key (String!)

The code of conduct's key.

codesOfConduct

種類: [CodeOfConduct]

Look up a code of conduct by its key.

enterprise

種類: Enterprise

Look up an enterprise by URL slug.

引数

名前 説明

invitationToken (String)

The enterprise invitation token.

slug (String!)

The enterprise URL slug.

license

種類: License

Look up an open source license by its key.

引数

名前 説明

key (String!)

The license's downcased SPDX ID.

licenses

種類: [License]!

Return a list of known open source licenses.

meta

種類: GitHubMetadata!

Return information about the GitHub instance.

node

種類: Node

Fetches an object given its ID.

引数

名前 説明

id (ID!)

ID of the object.

nodes

種類: [Node]!

Lookup nodes by a list of IDs.

引数

名前 説明

ids ([ID!]!)

The list of node IDs.

organization

種類: Organization

Lookup a organization by login.

引数

名前 説明

login (String!)

The organization's login.

rateLimit

種類: RateLimit

The client's rate limit information.

引数

名前 説明

dryRun (Boolean)

If true, calculate the cost for the query without evaluating it.

The default value is false.

relay

種類: Query!

Hack to workaround https://github.com/facebook/relay/issues/112 re-exposing the root query object.

repository

種類: Repository

Lookup a given repository by the owner and repository name.

引数

名前 説明

name (String!)

The name of the repository.

owner (String!)

The login field of a user or organization.

repositoryOwner

種類: RepositoryOwner

Lookup a repository owner (ie. either a User or an Organization) by login.

引数

名前 説明

login (String!)

The username to lookup the owner by.

resource

種類: UniformResourceLocatable

Lookup resource by a URL.

引数

名前 説明

url (URI!)

The URL.

securityAdvisory

種類: SecurityAdvisory

Fetch a Security Advisory by its GHSA ID.

引数

名前 説明

ghsaId (String!)

GitHub Security Advisory ID.

topic

種類: Topic

Look up a topic by name.

引数

名前 説明

name (String!)

The topic's name.

user

種類: User

Lookup a user by login.

引数

名前 説明

login (String!)

The user's login.

viewer

種類: User!

The currently authenticated user.