graphql-scalars
Version:
A collection of scalar types not included in base GraphQL.
10 lines (9 loc) • 402 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GraphQLLong = exports.GraphQLLongConfig = void 0;
const graphql_1 = require("graphql");
const BigInt_js_1 = require("./BigInt.js");
exports.GraphQLLongConfig = Object.assign({}, BigInt_js_1.GraphQLBigIntConfig, {
name: 'Long',
});
exports.GraphQLLong = new graphql_1.GraphQLScalarType(exports.GraphQLLongConfig);
;