federation/gateway/node_modules/graphql-tools/dist/transforms/transformSchema.d.ts
2020-11-14 16:43:58 +01:00

5 lines
250 B
TypeScript

import { GraphQLSchema } from 'graphql';
import { Transform } from '../transforms/transforms';
export default function transformSchema(targetSchema: GraphQLSchema, transforms: Array<Transform>): GraphQLSchema & {
transforms: Array<Transform>;
};