UNPKG

250 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { Transform } from '../transforms/transforms';
3export default function transformSchema(targetSchema: GraphQLSchema, transforms: Array<Transform>): GraphQLSchema & {
4 transforms: Array<Transform>;
5};