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

x/drash/src/services/graphql/graphql.ts>GraphQL.astFromValue

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

Produces a GraphQL Value AST given a JavaScript value.

A GraphQL type must be provided, which will be used to interpret different JavaScript values.

JSON Value GraphQL Value
Object Input Object
Array List
Boolean Boolean
String String / Enum Value
Number Int / Float
Mixed Enum Value
null NullValue