UNPKG

@graphql-tools/stitch

Version:

A set of utils for faster development of GraphQL tools

4 lines (3 loc) 487 B
import { GraphQLSchema } from 'graphql'; import { IStitchSchemasOptions } from './types.cjs'; 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;