This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/@graphql-tools/utils/es5/get-user-types-from-schema.d.ts

11 lines
310 B
TypeScript

import { GraphQLSchema, GraphQLObjectType } from 'graphql';
/**
* Get all GraphQL types from schema without:
*
* - Query, Mutation, Subscription objects
* - Internal scalars added by parser
*
* @param schema
*/
export declare function getUserTypesFromSchema(schema: GraphQLSchema): GraphQLObjectType[];