UNPKG

@ultipa-graph/ultipa-node-sdk

Version:

NodeJS SDK for ultipa-server 4.0

28 lines (27 loc) 3.01 kB
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.UQLReply>>; algo_knn(req: AlgoParams.knn, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_k_core(req: AlgoParams.k_core, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_page_rank(req: AlgoParams.page_rank, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_sybil_rank(req: AlgoParams.sybil_rank, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_jaccard(req: AlgoParams.jaccard, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_cosine_similarity(req: AlgoParams.cosine_similarity, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_connected_component(req: AlgoParams.connected_component, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_lpa(req: AlgoParams.lpa, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_mst(req: AlgoParams.mst, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_hanp(req: AlgoParams.hanp, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_k_means(req: AlgoParams.k_means, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_louvain(req: AlgoParams.louvain, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_triangle_counting(req: AlgoParams.triangle_counting, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_hyperANF(req: AlgoParams.hyperANF, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_common_neighbours(req: AlgoParams.common_neighbours, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_subgraph(req: AlgoParams.subgraph, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_clustering_coefficient(req: AlgoParams.clustering_coefficient, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_variable_compute(req: AlgoParams.variable_compute, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_bipartite(req: AlgoParams.bipartite, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; algo_adamic_adar(req: AlgoParams.adamic_adar, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>; } export { AlgorithmsCommunity };