Introspection query without generated types

Hi @jrmatos,

Introspection queries don’t have any way to filter their output. If all you are looking for is the input schema that you supplied initially, then sending the following GraphQL query to /admin endpoint might be useful:

query {
  getGQLSchema {
    schema
  }
}

This would return the input GraphQL schema that you had initially supplied as a string.