UNPKG

get-graphql-from-jsonschema

Version:

get-graphql-from-jsonschema gets a GraphQL schema from a JSON schema.

11 lines (10 loc) 253 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.scalarTypes = void 0; const scalarTypes = { boolean: 'Boolean', integer: 'Int', number: 'Float', string: 'String' }; exports.scalarTypes = scalarTypes;