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

small-recursive-introspection.graphql « graphql « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1025043b4744e9fb25a1a4d09e0cf7aa826b8de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allSchemaTypes {
  __schema {
    types {
      fields {
        type {
          fields {
            type {
              name
            }
          }
        }
      }
    }
  }
}