Sha256: 9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e
Contents?: true
Size: 1007 Bytes
Versions: 26
Compression:
Stored size: 1007 Bytes
Contents
import type { Maybe } from '../jsutils/Maybe'; import type { ValueNode } from '../language/ast'; import type { GraphQLInputType } from '../type/definition'; /** * 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 | * */ export declare function astFromValue( value: unknown, type: GraphQLInputType, ): Maybe<ValueNode>;
Version data entries
26 entries across 26 versions & 1 rubygems