@ultipa-graph/ultipa-driver
Version:
NodeJS SDK for ultipa-server 5.2
28 lines (27 loc) • 3.08 kB
TypeScript
import { ConnectionBase } from "../connection.base";
import { AlgoParams, RequestType, ULTIPA } from "../../../types";
declare class AlgorithmsCommunity extends ConnectionBase {
private __commonAlgorithmsCommunity;
algo_khop_all(req: AlgoParams.khop_all, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_knn(req: AlgoParams.knn, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_k_core(req: AlgoParams.k_core, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_page_rank(req: AlgoParams.page_rank, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_sybil_rank(req: AlgoParams.sybil_rank, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_jaccard(req: AlgoParams.jaccard, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_cosine_similarity(req: AlgoParams.cosine_similarity, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_connected_component(req: AlgoParams.connected_component, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_lpa(req: AlgoParams.lpa, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_mst(req: AlgoParams.mst, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_hanp(req: AlgoParams.hanp, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_k_means(req: AlgoParams.k_means, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_louvain(req: AlgoParams.louvain, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_triangle_counting(req: AlgoParams.triangle_counting, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_hyperANF(req: AlgoParams.hyperANF, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_common_neighbours(req: AlgoParams.common_neighbours, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_subgraph(req: AlgoParams.subgraph, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_clustering_coefficient(req: AlgoParams.clustering_coefficient, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_variable_compute(req: AlgoParams.variable_compute, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_bipartite(req: AlgoParams.bipartite, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
algo_adamic_adar(req: AlgoParams.adamic_adar, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>;
}
export { AlgorithmsCommunity };