Skip to main content
Module

x/graphql_tools/schema/types.ts>IExecutableSchemaDefinition

[DEPRECATED] 🦕 Useful tools to create and manipulate GraphQL schemas. Deno port of `graphql-tools` library
Latest
interface IExecutableSchemaDefinition
import { type IExecutableSchemaDefinition } from "https://deno.land/x/graphql_tools@0.0.4-deprecated/schema/types.ts";

Type Parameters

optional
TContext = any

Properties

optional
resolvers: IResolvers<any, TContext> | Array<IResolvers<any, TContext>>
optional
logger: ILogger
optional
allowUndefinedInResolve: boolean
optional
resolverValidationOptions: IResolverValidationOptions
optional
directiveResolvers: IDirectiveResolvers<any, TContext>
optional
schemaDirectives: Record<string, SchemaDirectiveVisitorClass>
optional
schemaTransforms: Array<SchemaTransform>
optional
parseOptions: GraphQLParseOptions
optional
inheritResolversFromInterfaces: boolean