UNPKG

@graphql-tools/delegate

Version:

A set of utils for faster development of GraphQL tools

34 lines (33 loc) 1.24 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Subschema = exports.isSubschema = void 0; const applySchemaTransforms_js_1 = require("./applySchemaTransforms.js"); function isSubschema(value) { return Boolean(value.transformedSchema); } exports.isSubschema = isSubschema; class Subschema { constructor(config) { this.name = config.name; this.schema = config.schema; this.executor = config.executor; this.batch = config.batch; this.batchingOptions = config.batchingOptions; this.createProxyingResolver = config.createProxyingResolver; this.transforms = config.transforms ?? []; this.merge = config.merge; } get transformedSchema() { if (!this._transformedSchema) { if (globalThis.process?.env?.['DEBUG'] != null) { console.warn('Transformed schema is not set yet. Returning a dummy one.'); } this._transformedSchema = (0, applySchemaTransforms_js_1.applySchemaTransforms)(this.schema, this); } return this._transformedSchema; } set transformedSchema(value) { this._transformedSchema = value; } } exports.Subschema = Subschema;