@ultipa-graph/ultipa-driver
Version:
NodeJS SDK for ultipa-server 5.2
76 lines • 3.46 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlgorithmsCommunity = void 0;
const connection_base_1 = require("../connection.base");
const algo_utils_1 = require("./algo.utils");
class AlgorithmsCommunity extends connection_base_1.ConnectionBase {
async __commonAlgorithmsCommunity(req, name, commonReq) {
return (0, algo_utils_1.algoCommonSend)(this, req, name, commonReq);
// return ConnectionBase.UqlGetSimple(this, uqlMaker)
}
async algo_khop_all(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_khop_all", commonReq);
}
async algo_knn(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_knn", commonReq);
}
async algo_k_core(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_k_core", commonReq);
}
async algo_page_rank(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_page_rank", commonReq);
}
async algo_sybil_rank(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_sybil_rank", commonReq);
}
async algo_jaccard(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_jaccard", commonReq);
}
async algo_cosine_similarity(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_cosine_similarity", commonReq);
}
async algo_connected_component(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_connected_component", commonReq);
}
async algo_lpa(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_lpa", commonReq);
}
async algo_mst(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_mst", commonReq);
}
async algo_hanp(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_hanp", commonReq);
}
async algo_k_means(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_k_means", commonReq);
}
async algo_louvain(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_louvain", commonReq);
}
async algo_triangle_counting(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_triangle_counting", commonReq);
}
async algo_hyperANF(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_hyperANF", commonReq);
}
async algo_common_neighbours(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_common_neighbours", commonReq);
}
async algo_subgraph(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_subgraph", commonReq);
}
async algo_clustering_coefficient(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "algo_clustering_coefficient", commonReq);
}
async algo_variable_compute(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "variable_compute", commonReq);
}
async algo_bipartite(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "bipartite", commonReq);
}
async algo_adamic_adar(req, commonReq) {
return this.__commonAlgorithmsCommunity(req, "adamic_adar", commonReq);
}
}
exports.AlgorithmsCommunity = AlgorithmsCommunity;
//# sourceMappingURL=community.js.map