UNPKG

apollo-schema-extend

Version:

Extends your Apollo Server Express based graphql server with an external graphql source

5 lines (4 loc) 344 B
import { ApolloServerExpressConfig } from 'apollo-server-express'; import { GraphQLSchema } from 'graphql'; import { Options } from './withExternalSchema.types'; export declare const withExternalSchema: <TContext = unknown>(schema: GraphQLSchema, options: Options<TContext>) => (config: ApolloServerExpressConfig) => ApolloServerExpressConfig;