get-graphql-from-jsonschema
Version:
get-graphql-from-jsonschema gets a GraphQL schema from a JSON schema.
14 lines (13 loc) • 458 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.handleScalarType = void 0;
const scalarTypes_1 = require("./scalarTypes");
const handleScalarType = function ({ type }) {
const graphqlTypeName = scalarTypes_1.scalarTypes[type];
const graphqlTypeDefinitions = [];
return {
typeName: graphqlTypeName,
typeDefinitions: graphqlTypeDefinitions
};
};
exports.handleScalarType = handleScalarType;