summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/graphql/small-recursive-introspection.graphql
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
            }
          }
        }
      }
    }
  }
}