Skip to main content
Module

x/graphql_deno/mod.ts>parseType

GraphQL-JS ported to Deno
Latest
function parseType
import { parseType } from "https://deno.land/x/graphql_deno@v15.0.0/mod.ts";

Given a string containing a GraphQL Type (ex. [Int!]), parse the AST for that type. Throws GraphQLError if a syntax error is encountered.

This is useful within tools that operate upon GraphQL Types directly and in isolation of complete GraphQL documents.

Consider providing the results to the utility function: typeFromAST().

Parameters

source: string | Source
optional
options: ParseOptions