Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/drash/src/services/graphql/deps.ts>GraphQL.GraphQLSchemaConfig

A microframework for Deno's HTTP server with zero third-party dependencies
Go to Latest
interface GraphQL.GraphQLSchemaConfig
implements GraphQLSchemaValidationOptions
import { type GraphQL } from "https://deno.land/x/drash@v2.8.1/src/services/graphql/deps.ts";
const { GraphQLSchemaConfig } = GraphQL;

Properties

optional
description: Maybe<string>
optional
query: Maybe<GraphQLObjectType>
optional
mutation: Maybe<GraphQLObjectType>
optional
subscription: Maybe<GraphQLObjectType>
optional
types: Maybe<Array<GraphQLNamedType>>
optional
directives: Maybe<Array<GraphQLDirective>>
optional
extensions: Maybe<Readonly<GraphQLSchemaExtensions>>
optional
astNode: Maybe<SchemaDefinitionNode>
optional
extensionASTNodes: Maybe<ReadonlyArray<SchemaExtensionNode>>