@graphql-tools/stitch
Version:
A set of utils for faster development of GraphQL tools
4 lines (3 loc) • 486 B
TypeScript
import { GraphQLSchema } from 'graphql';
import { IStitchSchemasOptions } from './types.js';
export declare function stitchSchemas<TContext extends Record<string, any> = Record<string, any>>({ subschemas, types, typeDefs, onTypeConflict, mergeDirectives, mergeTypes, typeMergingOptions, subschemaConfigTransforms, resolvers, inheritResolversFromInterfaces, resolverValidationOptions, updateResolversInPlace, schemaExtensions, ...rest }: IStitchSchemasOptions<TContext>): GraphQLSchema;