UNPKG

484 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { YamlConfig, MeshTransformOptions, MeshTransform } from '@graphql-mesh/types';
3export default class ResolversCompositionTransform implements MeshTransform {
4 private options;
5 noWrap: boolean;
6 constructor(options: MeshTransformOptions<YamlConfig.ResolversCompositionTransformObject[]>);
7 transformSchema(schema: GraphQLSchema): GraphQLSchema;
8}
9export { ResolversComposition } from '@graphql-tools/resolvers-composition';