Welcome to mirror list, hosted at ThFree Co, Russian Federation.

default.md.haml « templates « docs « graphql « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c0335265577dc490cdfce86964faffe56297db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
-# 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).

  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.

  CAUTION: **Caution:**
  Fields that are deprecated are marked with **{warning-solid}**.
\
- objects.each do |type|
  - unless type[:fields].empty?
    = "## #{type[:name]}"
    - if type[:description]&.present?
      \
      = type[:description]
    \
    ~ "| Name  | Type  | Description |"
    ~ "| ---   |  ---- | ----------  |"
    - sorted_fields(type[:fields]).each do |field|
      = render_field(field)
    \