Sha256: 048a7890c68012cb1e445fcf7f54224e0fcba880c5d5613106d7e5916913b324

Contents?: true

Size: 1.24 KB

Versions: 7

Compression:

Stored size: 1.24 KB

Contents

query IntrospectionQuery {
  __schema {
    queryType { name }
    mutationType { name }
    subscriptionType { name }
    types {
      ...FullType
    }
    directives {
      name
      description
      locations
      args {
        ...InputValue
      }
    }
  }
}

fragment FullType on __Type {
  kind
  name
  description
  fields(includeDeprecated: true) {
    name
    description
    args {
      ...InputValue
    }
    type {
      ...TypeRef
    }
    isDeprecated
    deprecationReason
  }
  inputFields {
    ...InputValue
  }
  interfaces {
    ...TypeRef
  }
  enumValues(includeDeprecated: true) {
    name
    description
    isDeprecated
    deprecationReason
  }
  possibleTypes {
    ...TypeRef
  }
}

fragment InputValue on __InputValue {
  name
  description
  type { ...TypeRef }
  defaultValue
}

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
              }
            }
          }
        }
      }
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rails-graphql-1.0.0.beta test/assets/introspection.gql
rails-graphql-0.2.1 test/assets/introspection.gql
rails-graphql-0.2.0 test/assets/introspection.gql
rails-graphql-0.1.3 test/assets/introspection.gql
rails-graphql-0.1.2 test/assets/introspection.gql
rails-graphql-0.1.1 test/assets/introspection.gql
rails-graphql-0.1.0 test/assets/introspection.gql