@pothos/core
Version:
Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript
22 lines (21 loc) • 527 B
JavaScript
function _define_property(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
}
else {
obj[key] = value;
}
return obj;
}
import { ObjectRef } from './object.js';
export class MutationRef extends ObjectRef {
constructor(...args) {
super(...args), _define_property(this, "kind", "Object");
}
}
//# sourceMappingURL=mutation.js.map