UNPKG

get-graphql-from-jsonschema

Version:

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

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