weaviate-client
Version:
JS/TS client for Weaviate
30 lines (29 loc) • 988 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const commandBase_js_1 = require("../validation/commandBase.js");
class ClassCreator extends commandBase_js_1.CommandBase {
constructor(client) {
super(client);
this.withClass = (classObj) => {
this.class = classObj;
return this;
};
this.validateClass = () => {
if (this.class == undefined || this.class == null) {
this.addError('class object must be set - set with .withClass(class)');
}
};
this.do = () => {
this.validateClass();
if (this.errors.length > 0) {
return Promise.reject(new Error('invalid usage: ' + this.errors.join(', ')));
}
const path = `/schema`;
return this.client.postReturn(path, this.class);
};
}
validate() {
this.validateClass();
}
}
exports.default = ClassCreator;