Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

astFromValue

Produces a GraphQL Value AST given a JavaScript object. Function will match JavaScript/JSON values to GraphQL AST schema format by using suggested GraphQLInputType. For example:

astFromValue("value", GraphQLString)

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
Unknown Enum Value
null NullValue
function astFromValue(value: unknown, type: GraphQLInputType): Maybe<ValueNode>;
§
astFromValue(value: unknown, type: GraphQLInputType): Maybe<ValueNode>
[src]

§Parameters

§
value: unknown
[src]

§Return Type