@paulxuca/graphql-yoga
Version:
Fully-featured GraphQL Server with focus on easy setup, performance & great developer experience
5 lines (4 loc) • 299 B
TypeScript
import { GraphQLExecutor } from 'apollo-server-core';
import { GraphQLSchema } from 'graphql';
import { CompilerOptions } from 'graphql-jit';
export declare const executor: (schema: GraphQLSchema, cacheSize?: number, compilerOpts?: Partial<CompilerOptions>) => GraphQLExecutor<Record<string, any>>;