UNPKG

@ultipa-graph/ultipa-driver

Version:

NodeJS SDK for ultipa-server 5.2

14 lines (13 loc) 1.22 kB
import { ConnectionBase } from "../connection.base"; import { AlgoParams, ULTIPA, RequestType } from "../../../types"; declare class AlgorithmsEmbedding extends ConnectionBase { private __common_AlgorithmsEmbedding; algo_random_walk(req: AlgoParams.random_walk, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; algo_random_walk_node2vec(req: AlgoParams.random_walk_node2vec, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; algo_random_walk_struc2vec(req: AlgoParams.random_walk_struc2vec, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; algo_node2vec(req: AlgoParams.node2vec, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; algo_line(req: AlgoParams.line, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; algo_struc2vec(req: AlgoParams.struc2vec, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; algo_fastRP(req: AlgoParams.fastRP, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.QueryReply>>; } export { AlgorithmsEmbedding };