Esta versión de GitHub Enterprise se discontinuó el 2021-09-23. No se realizarán lanzamientos de patch, ni siquiera para problemas de seguridad críticos. Para obtener un mejor desempeño, más seguridad y nuevas características, actualiza a la última versión de GitHub Enterprise. Para obtener ayuda con la actualización, contacta al soporte de GitHub Enterprise.

Consultas

Acerca de las consultas

Cada modelo de GraphQL tiene un tipo de raíz tanto para consultas como para mutaciones. El tipo de consulta define las operaciones de GraphQL que recuperan datos del servidor.

Paraobtener más información, consulta la sección "Acerca de las consultas".

Nota: Para solicitudes de GitHub App de tipo usuario a servidor, debes separar las consultas para las propuestas y para las solicitudes de cambios. Por ejemplo, utiliza filtros de is:issue o de is:pull-request y sus equivalentes. Utilizar la conexión search para devolver una combinación de propuestas y solicitudes de cambios en una sola consulta dará como resultado un conjunto de nodos vacío.

Conexiones

organizations

Type: OrganizationConnection!

A list of organizations.

Argumentos

Nombre Descripción

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

Type: SearchResultItemConnection!

Perform a search across resources.

Argumentos

Nombre Descripción

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

Type: SecurityAdvisoryConnection!

GitHub Security Advisories.

Argumentos

Nombre Descripción

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

Type: SecurityVulnerabilityConnection!

Software Vulnerabilities documented by GitHub Security Advisories.

Argumentos

Nombre Descripción

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

Type: UserConnection!

A list of users.

Argumentos

Nombre Descripción

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.


Campos

codeOfConduct

Type: CodeOfConduct

Look up a code of conduct by its key.

Argumentos

Nombre Descripción

key (String!)

The code of conduct's key.


codesOfConduct

Type: [CodeOfConduct]

Look up a code of conduct by its key.


enterprise

Type: Enterprise

Look up an enterprise by URL slug.

Argumentos

Nombre Descripción

invitationToken (String)

The enterprise invitation token.

slug (String!)

The enterprise URL slug.


license

Type: License

Look up an open source license by its key.

Argumentos

Nombre Descripción

key (String!)

The license's downcased SPDX ID.


licenses

Type: [License]!

Return a list of known open source licenses.


meta

Type: GitHubMetadata!

Return information about the GitHub instance.


node

Type: Node

Fetches an object given its ID.

Argumentos

Nombre Descripción

id (ID!)

ID of the object.


nodes

Type: [Node]!

Lookup nodes by a list of IDs.

Argumentos

Nombre Descripción

ids ([ID!]!)

The list of node IDs.


organization

Type: Organization

Lookup a organization by login.

Argumentos

Nombre Descripción

login (String!)

The organization's login.


rateLimit

Type: RateLimit

The client's rate limit information.

Argumentos

Nombre Descripción

dryRun (Boolean)

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

The default value is false.


relay

Type: Query!

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


repository

Type: Repository

Lookup a given repository by the owner and repository name.

Argumentos

Nombre Descripción

name (String!)

The name of the repository.

owner (String!)

The login field of a user or organization.


repositoryOwner

Type: RepositoryOwner

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

Argumentos

Nombre Descripción

login (String!)

The username to lookup the owner by.


resource

Type: UniformResourceLocatable

Lookup resource by a URL.

Argumentos

Nombre Descripción

url (URI!)

The URL.


securityAdvisory

Type: SecurityAdvisory

Fetch a Security Advisory by its GHSA ID.

Argumentos

Nombre Descripción

ghsaId (String!)

GitHub Security Advisory ID.


topic

Type: Topic

Look up a topic by name.

Argumentos

Nombre Descripción

name (String!)

The topic's name.


user

Type: User

Lookup a user by login.

Argumentos

Nombre Descripción

login (String!)

The user's login.


viewer

Type: User!

The currently authenticated user.