Sha256: 1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff
Contents?: true
Size: 844 Bytes
Versions: 26
Compression:
Stored size: 844 Bytes
Contents
import type { Maybe } from '../jsutils/Maybe'; import type { ObjMap } from '../jsutils/ObjMap'; import type { ValueNode } from '../language/ast'; /** * Produces a JavaScript value given a GraphQL Value AST. * * Unlike `valueFromAST()`, no type is provided. The resulting JavaScript value * will reflect the provided GraphQL value AST. * * | GraphQL Value | JavaScript Value | * | -------------------- | ---------------- | * | Input Object | Object | * | List | Array | * | Boolean | Boolean | * | String / Enum | String | * | Int / Float | Number | * | Null | null | * */ export declare function valueFromASTUntyped( valueNode: ValueNode, variables?: Maybe<ObjMap<unknown>>, ): unknown;
Version data entries
26 entries across 26 versions & 1 rubygems