UNPKG

get-graphql-from-jsonschema

Version:

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

12 lines (11 loc) 358 B
import { Direction } from './Types/Direction'; import { TranslatableTypeJsonSchema } from './Types/TranslateableTypeJsonSchema'; declare const parseType: ({ path, schema, direction }: { path: string[]; schema: TranslatableTypeJsonSchema; direction: Direction; }) => { typeName: string; typeDefinitions: string[]; }; export { parseType };