nikitastupin / clairvoyance

Obtain GraphQL API schema even if the introspection is disabled
Apache License 2.0
1.02k stars 92 forks source link

Why introspection query use ofType in TypeRef more than 4 times? #7

Closed nikitastupin closed 1 year ago

nikitastupin commented 3 years ago
fragment TypeRef on __Type {
kind
name
ofType {
  kind
  name
  ofType {
    kind
    name
    ofType {
      kind
      name
      ofType {
        kind
        name
        ofType {
          kind
          name
          ofType {
            kind
            name
            ofType {
              kind
              name
            }
          }
        }
      }
    }
  }
}
nikitastupin commented 1 year ago

Closing this because it doesn't impact Clairvoyance