2019-07-11 04:06:35 -04:00
|
|
|
-# 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-01-31 01:08:59 -05:00
|
|
|
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-02-27 13:09:21 -05:00
|
|
|
|
2020-12-04 19:10:01 -05:00
|
|
|
WARNING:
|
2020-02-27 13:09:21 -05:00
|
|
|
Fields that are deprecated are marked with **{warning-solid}**.
|
2020-11-17 22:09:21 -05:00
|
|
|
Items (fields, enums, etc) that have been removed according to our [deprecation process](../index.md#deprecation-process) can be found
|
|
|
|
in [Removed Items](../removed_items.md).
|
2021-02-11 01:09:17 -05:00
|
|
|
|
|
|
|
<!-- vale gitlab.Spelling = NO -->
|
2019-07-11 04:06:35 -04:00
|
|
|
\
|
2020-09-11 05:08:44 -04:00
|
|
|
|
2021-02-17 10:09:21 -05:00
|
|
|
:plain
|
|
|
|
## Queries
|
|
|
|
|
|
|
|
Queries are used to get the resources, filter or query them.
|
|
|
|
|
|
|
|
For more information, visit [Queries and Mutations](https://graphql.org/learn/queries/).
|
|
|
|
\
|
|
|
|
|
|
|
|
- sorted_by_name(queries).each do |query|
|
|
|
|
|
|
|
|
= render_name_and_description(query)
|
|
|
|
- unless query[:arguments].empty?
|
|
|
|
~ "| Name | Description | Type |"
|
|
|
|
~ "| ----- | ---- | ----------- |"
|
|
|
|
- sorted_by_name(query[:arguments]).each do |argument|
|
|
|
|
= render_argument(argument)
|
|
|
|
\
|
|
|
|
|
2020-09-11 05:08:44 -04:00
|
|
|
:plain
|
|
|
|
## Object types
|
|
|
|
|
2020-12-16 16:09:57 -05:00
|
|
|
Object types represent the resources that the GitLab GraphQL API can return.
|
2020-09-11 05:08:44 -04:00
|
|
|
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-07-11 04:06:35 -04:00
|
|
|
- objects.each do |type|
|
|
|
|
- unless type[:fields].empty?
|
2020-09-11 05:08:44 -04:00
|
|
|
= render_name_and_description(type)
|
|
|
|
~ "| Field | Type | Description |"
|
|
|
|
~ "| ----- | ---- | ----------- |"
|
|
|
|
- sorted_by_name(type[:fields]).each do |field|
|
2020-02-27 13:09:21 -05:00
|
|
|
= render_field(field)
|
2019-07-11 04:06:35 -04:00
|
|
|
\
|
2020-09-11 05:08:44 -04:00
|
|
|
|
|
|
|
: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)
|
|
|
|
~ "| Value | Description |"
|
|
|
|
~ "| ----- | ----------- |"
|
|
|
|
- sorted_by_name(enum[:values]).each do |value|
|
|
|
|
= render_enum_value(value)
|
|
|
|
\
|