@ultipa-graph/ultipa-driver
Version:
NodeJS SDK for ultipa-server 5.2
33 lines • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlgorithmsEmbedding = void 0;
const connection_base_1 = require("../connection.base");
const algo_utils_1 = require("./algo.utils");
class AlgorithmsEmbedding extends connection_base_1.ConnectionBase {
async __common_AlgorithmsEmbedding(req, name, commonReq) {
return (0, algo_utils_1.algoCommonSend)(this, req, name, commonReq);
}
async algo_random_walk(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_random_walk", commonReq);
}
async algo_random_walk_node2vec(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_random_walk_node2vec", commonReq);
}
async algo_random_walk_struc2vec(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_random_walk_struc2vec", commonReq);
}
async algo_node2vec(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_node2vec", commonReq);
}
async algo_line(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_line", commonReq);
}
async algo_struc2vec(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_struc2vec", commonReq);
}
async algo_fastRP(req, commonReq) {
return this.__common_AlgorithmsEmbedding(req, "algo_fastRP", commonReq);
}
}
exports.AlgorithmsEmbedding = AlgorithmsEmbedding;
//# sourceMappingURL=embedding.js.map