UNPKG

get-graphql-from-jsonschema

Version:

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

7 lines (6 loc) 257 B
import { CommonJsonSchema } from './CommonJsonSchema'; import { ScalarType } from './ScalarType'; declare type TranslatableScalarTypeJsonSchema = { type: ScalarType | ScalarType[]; } & CommonJsonSchema; export type { TranslatableScalarTypeJsonSchema };