Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of uppercase, lowercase, numbers, and special characters (such as @*&#).
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Certifications

Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Invoice

ProductName CreateTime ID Price File
ProductName CreateTime ID Price File
v4.3
Search
    中文EN
    v4.3

      Algorithm

      listAlgo()

      Method and interface:

      listAlgo(commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ResponseType.Algo[]>>
      

      Example: Acquire information of all installed algorithms

      import { ConnectionPool } from "@ultipa-graph/ultipa-node-sdk";
      
      let sdkUsage = async () => {
      
        // omit code of establishing server connection 'conn' 
      
        let resp = await conn.listAlgo();
        console.log(resp.data);
        
      };
      
      sdkUsage();
      

      installAlgo()

      Method and interface:

      installAlgo(req: RequestType.InstallAlgo, 
      			commonReq?: RequestType.RequestConfig
      ): Promise<ULTIPA.Response<boolean>>
      
      interface InstallAlgo {
      	paths: {
          	algoFilePath: string;
              infoFilePath: string;
          };
      }
      

      Example: Install algorithm LPA. The config file 'lpa.yml' and the installation package 'libplugin_lpa.so' are placed under the path of current TS file

      import { ConnectionPool } from "@ultipa-graph/ultipa-node-sdk";
      
      let sdkUsage = async () => {
      
         // omit code of establishing server connection 'conn' 
      
        let resp = await conn.installAlgo({
            paths: {
                algoFilePath: "./libplugin_lpa.so",
                infoFilePath: "./lpa.yml",
            }
        });
        console.log(resp.status.code_desc);
        
      };
      
      sdkUsage();
      

      uninstallAlgo()

      Method and interface:

      uninstallAlgo(req: RequestType.UninstallAlgo, 
      			  commonReq?: RequestType.RequestConfig
      ): Promise<ULTIPA.Response<boolean>>
      
      interface UninstallAlgo {
      	algoName: string;
      }
      

      Example: Uninstall algorithm LPA

      import { ConnectionPool } from "@ultipa-graph/ultipa-node-sdk";
      
      let sdkUsage = async () => {
      
         // omit code of establishing server connection 'conn' 
        
      
        let resp = await conn.uninstallAlgo({ algoName: "lpa" });
        console.log(resp.status.code_desc);
        
      };
      
      sdkUsage();
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      *
      你的电话必须填写