UNPKG

310 BTypeScriptView Raw
1import { GraphQLSchema, GraphQLObjectType } from 'graphql';
2/**
3 * Get all GraphQL types from schema without:
4 *
5 * - Query, Mutation, Subscription objects
6 * - Internal scalars added by parser
7 *
8 * @param schema
9 */
10export declare function getUserTypesFromSchema(schema: GraphQLSchema): GraphQLObjectType[];