graphql-scalars
Version:
A collection of scalar types not included in base GraphQL.
7 lines (6 loc) • 334 B
JavaScript
import { GraphQLScalarType } from 'graphql';
import { GraphQLNonNegativeIntConfig } from './NonNegativeInt.js';
const GraphQLUnsignedIntConfig = /*#__PURE__*/ Object.assign({}, GraphQLNonNegativeIntConfig, {
name: 'UnsignedInt',
});
export const GraphQLUnsignedInt = /*#__PURE__*/ new GraphQLScalarType(GraphQLUnsignedIntConfig);