Skip to main content
Frecuentemente publicamos actualizaciones de nuestra documentación. Es posible que la traducción de esta página esté en curso. Para conocer la información más actual, visita la documentación en inglés. Si existe un problema con las traducciones en esta página, por favor infórmanos.

Esta versión de GitHub Enterprise se discontinuó el 2022-06-03. 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

Tipo: 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

Tipo: 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

Tipo: 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

Tipo: 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

Tipo: 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

Tipo: CodeOfConduct

Look up a code of conduct by its key.

Argumentos

Nombre Descripción

key (String!)

The code of conduct's key.

codesOfConduct

Tipo: [CodeOfConduct]

Look up a code of conduct by its key.

enterprise

Tipo: 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

Tipo: License

Look up an open source license by its key.

Argumentos

Nombre Descripción

key (String!)

The license's downcased SPDX ID.

licenses

Tipo: [License]!

Return a list of known open source licenses.

meta

Tipo: GitHubMetadata!

Return information about the GitHub instance.

node

Tipo: Node

Fetches an object given its ID.

Argumentos

Nombre Descripción

id (ID!)

ID of the object.

nodes

Tipo: [Node]!

Lookup nodes by a list of IDs.

Argumentos

Nombre Descripción

ids ([ID!]!)

The list of node IDs.

organization

Tipo: Organization

Lookup a organization by login.

Argumentos

Nombre Descripción

login (String!)

The organization's login.

rateLimit

Tipo: 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

Tipo: Query!

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

repository

Tipo: 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

Tipo: 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

Tipo: UniformResourceLocatable

Lookup resource by a URL.

Argumentos

Nombre Descripción

url (URI!)

The URL.

securityAdvisory

Tipo: SecurityAdvisory

Fetch a Security Advisory by its GHSA ID.

Argumentos

Nombre Descripción

ghsaId (String!)

GitHub Security Advisory ID.

topic

Tipo: Topic

Look up a topic by name.

Argumentos

Nombre Descripción

name (String!)

The topic's name.

user

Tipo: User

Lookup a user by login.

Argumentos

Nombre Descripción

login (String!)

The user's login.

viewer

Tipo: User!

The currently authenticated user.