UNPKG

get-graphql-from-jsonschema

Version:

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

5 lines (4 loc) 209 B
declare const scalarTypeEnum: readonly ["boolean", "integer", "number", "string"]; declare type ScalarType = 'boolean' | 'integer' | 'number' | 'string'; export { scalarTypeEnum }; export type { ScalarType };