UNPKG

graphql-scalars

Version:

A collection of scalar types not included in base GraphQL.

7 lines (6 loc) 289 B
import { GraphQLScalarType } from 'graphql'; import { GraphQLBigIntConfig } from './BigInt.js'; export const GraphQLLongConfig = /*#__PURE__*/ Object.assign({}, GraphQLBigIntConfig, { name: 'Long', }); export const GraphQLLong = /*#__PURE__*/ new GraphQLScalarType(GraphQLLongConfig);