12345678910111213141516171819202122232425262728293031323334353637383940 |
- import type { DocumentNode } from '../language/ast';
- import type {
- GraphQLSchemaNormalizedConfig,
- GraphQLSchemaValidationOptions,
- } from '../type/schema';
- import { GraphQLSchema } from '../type/schema';
- interface Options extends GraphQLSchemaValidationOptions {
-
- assumeValidSDL?: boolean;
- }
- export declare function extendSchema(
- schema: GraphQLSchema,
- documentAST: DocumentNode,
- options?: Options,
- ): GraphQLSchema;
- export declare function extendSchemaImpl(
- schemaConfig: GraphQLSchemaNormalizedConfig,
- documentAST: DocumentNode,
- options?: Options,
- ): GraphQLSchemaNormalizedConfig;
- export {};
|