UNPKG

graphql-gene

Version:

Generates automatically an executable schema out of your ORM models

9 lines (8 loc) 320 B
import { GraphQLSchema } from 'graphql'; import { GenePlugin, AnyObject, TypeDefLines } from './types'; export declare function addResolversToSchema<SchemaTypes extends AnyObject>(options: { typeDefLines: TypeDefLines; schema: GraphQLSchema; plugins: GenePlugin[]; types: SchemaTypes; }): GraphQLSchema;