UNPKG

get-graphql-from-jsonschema

Version:

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

11 lines (8 loc) 206 B
import { ScalarType } from './Types/ScalarType'; const scalarTypes: Record<ScalarType, string> = { boolean: 'Boolean', integer: 'Int', number: 'Float', string: 'String' }; export { scalarTypes };