UNPKG

@graphql-tools/utils

Version:

Common package containing utils and types for GraphQL tools

82 lines (81 loc) 2.83 kB
import { Kind } 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 function astFromValueUntyped(value) { // only explicit null, not undefined, NaN if (value === null) { return { kind: Kind.NULL }; } // undefined if (value === undefined) { return null; } // Convert JavaScript array to GraphQL list. If the GraphQLType is a list, but // the value is not an array, convert the value using the list's item type. if (Array.isArray(value)) { const valuesNodes = []; for (const item of value) { const itemNode = astFromValueUntyped(item); if (itemNode != null) { valuesNodes.push(itemNode); } } return { kind: Kind.LIST, values: valuesNodes }; } if (typeof value === 'object') { if (value?.toJSON) { return astFromValueUntyped(value.toJSON()); } const fieldNodes = []; for (const fieldName in value) { const fieldValue = value[fieldName]; const ast = astFromValueUntyped(fieldValue); if (ast) { fieldNodes.push({ kind: Kind.OBJECT_FIELD, name: { kind: Kind.NAME, value: fieldName }, value: ast, }); } } return { kind: Kind.OBJECT, fields: fieldNodes }; } // Others serialize based on their corresponding JavaScript scalar types. if (typeof value === 'boolean') { return { kind: Kind.BOOLEAN, value }; } if (typeof value === 'bigint') { return { kind: Kind.INT, value: String(value) }; } // JavaScript numbers can be Int or Float values. if (typeof value === 'number' && isFinite(value)) { const stringNum = String(value); return integerStringRegExp.test(stringNum) ? { kind: Kind.INT, value: stringNum } : { kind: Kind.FLOAT, value: stringNum }; } if (typeof value === 'string') { return { kind: Kind.STRING, value }; } throw new TypeError(`Cannot convert value to AST: ${value}.`); } /** * IntValue: * - NegativeSign? 0 * - NegativeSign? NonZeroDigit ( Digit+ )? */ const integerStringRegExp = /^-?(?:0|[1-9][0-9]*)$/;