2019-09-30 21:07:59 +05:30
|
|
|
-# haml-lint:disable UnnecessaryStringOutput
|
|
|
|
|
|
|
|
= auto_generated_comment
|
|
|
|
|
|
|
|
:plain
|
|
|
|
# GraphQL API Resources
|
|
|
|
|
|
|
|
This documentation is self-generated based on GitLab current GraphQL schema.
|
|
|
|
|
|
|
|
The API can be explored interactively using the [GraphiQL IDE](../index.md#graphiql).
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
Each table below documents a GraphQL type. Types match loosely to models, but not all
|
|
|
|
fields and methods on a model are available via GraphQL.
|
2020-04-08 14:13:33 +05:30
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
WARNING:
|
2020-04-08 14:13:33 +05:30
|
|
|
Fields that are deprecated are marked with **{warning-solid}**.
|
2021-04-17 20:07:23 +05:30
|
|
|
Items (fields, enums, etc) that have been removed according to our [deprecation process](../index.md#deprecation-and-removal-process) can be found
|
2021-01-29 00:20:46 +05:30
|
|
|
in [Removed Items](../removed_items.md).
|
2021-03-11 19:13:27 +05:30
|
|
|
|
|
|
|
<!-- vale gitlab.Spelling = NO -->
|
2019-09-30 21:07:59 +05:30
|
|
|
\
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
:plain
|
|
|
|
## `Query` type
|
|
|
|
|
|
|
|
The `Query` type contains the API's top-level entry points for all executable queries.
|
|
|
|
\
|
|
|
|
|
|
|
|
- sorted_by_name(queries).each do |query|
|
|
|
|
= render_name_and_description(query)
|
|
|
|
\
|
|
|
|
= render_return_type(query)
|
|
|
|
- unless query[:arguments].empty?
|
|
|
|
~ "#### Arguments\n"
|
|
|
|
~ "| Name | Type | Description |"
|
|
|
|
~ "| ---- | ---- | ----------- |"
|
|
|
|
- sorted_by_name(query[:arguments]).each do |argument|
|
|
|
|
= render_field(argument)
|
|
|
|
\
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
:plain
|
|
|
|
## Object types
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
Object types represent the resources that the GitLab GraphQL API can return.
|
2020-11-24 15:15:51 +05:30
|
|
|
They contain _fields_. Each field has its own type, which will either be one of the
|
|
|
|
basic GraphQL [scalar types](https://graphql.org/learn/schema/#scalar-types)
|
|
|
|
(e.g.: `String` or `Boolean`) or other object types.
|
|
|
|
|
|
|
|
For more information, see
|
|
|
|
[Object Types and Fields](https://graphql.org/learn/schema/#object-types-and-fields)
|
|
|
|
on `graphql.org`.
|
|
|
|
\
|
|
|
|
|
2019-09-30 21:07:59 +05:30
|
|
|
- objects.each do |type|
|
|
|
|
- unless type[:fields].empty?
|
2020-11-24 15:15:51 +05:30
|
|
|
= render_name_and_description(type)
|
2021-04-17 20:07:23 +05:30
|
|
|
\
|
2020-11-24 15:15:51 +05:30
|
|
|
~ "| Field | Type | Description |"
|
|
|
|
~ "| ----- | ---- | ----------- |"
|
|
|
|
- sorted_by_name(type[:fields]).each do |field|
|
2020-04-08 14:13:33 +05:30
|
|
|
= render_field(field)
|
2019-09-30 21:07:59 +05:30
|
|
|
\
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
:plain
|
|
|
|
## Enumeration types
|
|
|
|
|
|
|
|
Also called _Enums_, enumeration types are a special kind of scalar that
|
|
|
|
is restricted to a particular set of allowed values.
|
|
|
|
|
|
|
|
For more information, see
|
|
|
|
[Enumeration Types](https://graphql.org/learn/schema/#enumeration-types)
|
|
|
|
on `graphql.org`.
|
|
|
|
\
|
|
|
|
|
|
|
|
- enums.each do |enum|
|
|
|
|
- unless enum[:values].empty?
|
|
|
|
= render_name_and_description(enum)
|
2021-04-17 20:07:23 +05:30
|
|
|
\
|
2020-11-24 15:15:51 +05:30
|
|
|
~ "| Value | Description |"
|
|
|
|
~ "| ----- | ----------- |"
|
|
|
|
- sorted_by_name(enum[:values]).each do |value|
|
|
|
|
= render_enum_value(value)
|
|
|
|
\
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
:plain
|
|
|
|
## Scalar types
|
|
|
|
|
|
|
|
Scalar values are atomic values, and do not have fields of their own.
|
|
|
|
Basic scalars include strings, boolean values, and numbers. This schema also
|
|
|
|
defines various custom scalar values, such as types for times and dates.
|
|
|
|
|
|
|
|
This schema includes custom scalar types for identifiers, with a specific type for
|
|
|
|
each kind of object.
|
|
|
|
|
|
|
|
For more information, read about [Scalar Types](https://graphql.org/learn/schema/#scalar-types) on `graphql.org`.
|
|
|
|
\
|
|
|
|
|
|
|
|
- graphql_scalar_types.each do |type|
|
|
|
|
= render_name_and_description(type)
|
|
|
|
\
|
|
|
|
|
|
|
|
:plain
|
|
|
|
## Abstract types
|
|
|
|
|
|
|
|
Abstract types (unions and interfaces) are ways the schema can represent
|
|
|
|
values that may be one of several concrete types.
|
|
|
|
|
|
|
|
- A [`Union`](https://graphql.org/learn/schema/#union-types) is a set of possible types.
|
|
|
|
The types might not have any fields in common.
|
|
|
|
- An [`Interface`](https://graphql.org/learn/schema/#interfaces) is a defined set of fields.
|
|
|
|
Types may `implement` an interface, which
|
|
|
|
guarantees that they have all the fields in the set. A type may implement more than
|
|
|
|
one interface.
|
|
|
|
|
|
|
|
See the [GraphQL documentation](https://graphql.org/learn/) for more information on using
|
|
|
|
abstract types.
|
|
|
|
\
|
|
|
|
|
|
|
|
:plain
|
|
|
|
### Unions
|
|
|
|
\
|
|
|
|
|
|
|
|
- graphql_union_types.each do |type|
|
|
|
|
= render_name_and_description(type, 4)
|
|
|
|
\
|
|
|
|
One of:
|
|
|
|
\
|
|
|
|
- type[:possible_types].each do |type_name|
|
|
|
|
~ "- [`#{type_name}`](##{type_name.downcase})"
|
|
|
|
\
|
|
|
|
|
|
|
|
:plain
|
|
|
|
### Interfaces
|
|
|
|
\
|
|
|
|
|
|
|
|
- graphql_interface_types.each do |type|
|
|
|
|
= render_name_and_description(type, 4)
|
|
|
|
\
|
|
|
|
Implementations:
|
|
|
|
\
|
|
|
|
- type[:implemented_by].each do |type_name|
|
|
|
|
~ "- [`#{type_name}`](##{type_name.downcase})"
|
|
|
|
\
|
|
|
|
~ "| Field | Type | Description |"
|
|
|
|
~ "| ----- | ---- | ----------- |"
|
|
|
|
- sorted_by_name(type[:fields] + type[:connections]).each do |field|
|
|
|
|
= render_field(field)
|
|
|
|
\
|