UNPKG

get-graphql-from-jsonschema

Version:

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

8 lines (7 loc) 225 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hasArrayType = void 0; const hasArrayType = function (schema) { return schema.type === 'array'; }; exports.hasArrayType = hasArrayType;