Repository URL to install this package:
|
Version:
0.0.6 ▾
|
/**
* @file @alias library
* @todo https://github.com/apollographql/apollo-server/issues/1075#issuecomment-440768737
*/
import { Request as OneRequest } from '@skava/request';
import { GraphQLModule as GraphQLCoreModule, GraphQLModuleOptions } from '@graphql-modules/core';
export { mergeGraphQLSchemas } from '@graphql-modules/epoxy';
export { GraphQLModule as GraphQLCoreModule, GraphQLModuleOptions, } from '@graphql-modules/core';
export declare class GraphQLModule<Config = any, Request = any, Context = any> extends GraphQLCoreModule<Config, Request, Context> {
dataSources: () => OneRequest | any;
mergedContextBuilder: (context: Context) => Context;
syncContextBuilder: (context: Context) => Context;
constructor(_options?: GraphQLModuleOptions<Config, Request, Context> & {
dataSources?: () => OneRequest;
}, _moduleConfig?: Config);
}