@graphql-tools/delegate
Version:
A set of utils for faster development of GraphQL tools
35 lines (34 loc) • 1.37 kB
JavaScript
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) {
var _a;
this.schema = config.schema;
this.executor = config.executor;
this.batch = config.batch;
this.batchingOptions = config.batchingOptions;
this.createProxyingResolver = config.createProxyingResolver;
this.transforms = (_a = config.transforms) !== null && _a !== void 0 ? _a : [];
this.merge = config.merge;
}
get transformedSchema() {
var _a, _b;
if (!this._transformedSchema) {
if (((_b = (_a = globalThis.process) === null || _a === void 0 ? void 0 : _a.env) === null || _b === void 0 ? void 0 : _b['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;
;