ontotext-platform-custom-scalars
Version:
A library of customized GraphQL scalars for Ontotext Platform
46 lines (40 loc) • 1.76 kB
JavaScript
import GraphQLDecimal from "./scalars/GraphQLDecimal";
import GraphQLInteger from "./scalars/GraphQLInteger";
import GraphQLNegativeFloat from "./scalars/GraphQLNegativeFloat";
import GraphQLNegativeInteger from "./scalars/GraphQLNegativeInteger";
import GraphQLNonNegativeFloat from "./scalars/GraphQLNonNegativeFloat";
import GraphQLNonNegativeInteger from "./scalars/GraphQLNonNegativeInteger";
import GraphQLNonPositiveFloat from "./scalars/GraphQLNonPositiveFloat";
import GraphQLNonPositiveInteger from "./scalars/GraphQLNonPositiveInteger";
import GraphQLPositiveFloat from "./scalars/GraphQLPositiveFloat";
import GraphQLPositiveInteger from "./scalars/GraphQLPositiveInteger";
import GraphQLUnsignedByte from "./scalars/unsigned/GraphQLUnsignedByte";
import GraphQLUnsignedInteger from "./scalars/unsigned/GraphQLUnsignedInteger";
import GraphQLUnsignedLong from "./scalars/unsigned/GraphQLUnsignedLong";
import GraphQLUnsignedShort from "./scalars/unsigned/GraphQLUnsignedShort";
import GraphQLDate from "./scalars/time/GraphQLDate";
import GraphQLDateTime from "./scalars/time/GraphQLDateTime";
import GraphQLTime from "./scalars/time/GraphQLTime";
import GraphQLYear from "./scalars/time/GraphQLYear";
import GraphQLYearMonth from "./scalars/time/GraphQLYearMonth";
export {
GraphQLDecimal,
GraphQLInteger,
GraphQLNegativeFloat,
GraphQLNegativeInteger,
GraphQLNonNegativeFloat,
GraphQLNonNegativeInteger,
GraphQLNonPositiveFloat,
GraphQLNonPositiveInteger,
GraphQLPositiveFloat,
GraphQLPositiveInteger,
GraphQLUnsignedByte,
GraphQLUnsignedInteger,
GraphQLUnsignedLong,
GraphQLUnsignedShort,
GraphQLDate,
GraphQLDateTime,
GraphQLTime,
GraphQLYear,
GraphQLYearMonth
};