@graphql-tools/utils
Version:
Common package containing utils and types for GraphQL tools
19 lines (18 loc) • 691 B
TypeScript
import { ValueNode } from 'graphql';
/**
* Produces a GraphQL Value AST given a JavaScript object.
* Function will match JavaScript/JSON values to GraphQL AST schema format
* by using the following mapping.
*
* | JSON Value | GraphQL Value |
* | ------------- | -------------------- |
* | Object | Input Object |
* | Array | List |
* | Boolean | Boolean |
* | String | String |
* | Number | Int / Float |
* | BigInt | Int |
* | null | NullValue |
*
*/
export declare function astFromValueUntyped(value: any): ValueNode | null;