@pothos/plugin-simple-objects
Version:
A Pothos plugin for defining objects and interfaces without ts definitions for those types
85 lines (84 loc) • 2.69 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: Object.getOwnPropertyDescriptor(all, name).get
});
}
_export(exports, {
get PothosSimpleObjectsPlugin () {
return PothosSimpleObjectsPlugin;
},
get default () {
return _default;
}
});
require("./global-types");
const _core = /*#__PURE__*/ _interop_require_wildcard(require("@pothos/core"));
function _getRequireWildcardCache(nodeInterop) {
if (typeof WeakMap !== "function") return null;
var cacheBabelInterop = new WeakMap();
var cacheNodeInterop = new WeakMap();
return (_getRequireWildcardCache = function(nodeInterop) {
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
})(nodeInterop);
}
function _interop_require_wildcard(obj, nodeInterop) {
if (!nodeInterop && obj && obj.__esModule) {
return obj;
}
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
return {
default: obj
};
}
var cache = _getRequireWildcardCache(nodeInterop);
if (cache && cache.has(obj)) {
return cache.get(obj);
}
var newObj = {
__proto__: null
};
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
for(var key in obj){
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
if (desc && (desc.get || desc.set)) {
Object.defineProperty(newObj, key, desc);
} else {
newObj[key] = obj[key];
}
}
}
newObj.default = obj;
if (cache) {
cache.set(obj, newObj);
}
return newObj;
}
const pluginName = 'simpleObjects';
const _default = pluginName;
class PothosSimpleObjectsPlugin extends _core.BasePlugin {
}
_core.default.registerPlugin(pluginName, PothosSimpleObjectsPlugin);
const proto = _core.default.prototype;
proto.simpleObject = function simpleObject(name, options, extraFields) {
const ref = new _core.ObjectRef(name);
this.objectType(ref, options);
if (extraFields) {
this.objectFields(ref, extraFields);
}
return ref;
};
proto.simpleInterface = function simpleInterface(name, options, extraFields) {
const ref = new _core.InterfaceRef(name);
this.interfaceType(ref, options);
if (extraFields) {
this.interfaceFields(ref, extraFields);
}
return ref;
};
//# sourceMappingURL=index.js.map