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.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

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

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

Search
    English

      Graph

      showGraph()

      Method and interface:

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

      Example: Acquire all graphsets

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

      getGraph()

      Method and interface:

      getGraph(req: RequestType.Graph, 
      		 commonReq?: RequestType.RequestConfig
      ): Promise<ULTIPA.Response<ResponseType.Graph>>
      
      interface Graph {
      	name: string;
      }
      

      Example: Acquire graphset 'amz'

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

      createGraph()

      Method and interface:

      createGraph(req: RequestType.GraphCreate, 
      			commonReq?: RequestType.RequestConfig
      ): Promise<ULTIPA.Response<null>>
      
      interface GraphCreate {
      	name: string;
          desc?: string;
      }
      

      Example: Create graphset with name 'testGraph' and description 'graphset for test'

      import { ConnectionPool } from "@ultipa-graph/ultipa-node-sdk";
      
      let sdkUsage = async () => {
      
        // omit code of establishing server connection 'conn'
        
        let resp = await conn.createGraph({
          name: "testGraph", 
          desc: "graphset for test"
        });
        console.log(resp.status.code_desc);
        
      };
      
      sdkUsage();
      

      updateGraph()

      Method and interface:

      updateGraph(req: RequestType.UpdateGraph, 
      			commonReq?: RequestType.RequestConfig
      ): Promise<ULTIPA.Response<null>>
      
      interface UpdateGraph {
      	oldGraphSetName: string;
          newGraphSetName?: string;
          newDesc?: string;
      }
      

      Example: Modify graphset 'testGraph' with new name 'newGraph' and new description 'rename testGraph as newGraph'

      import { ConnectionPool } from "@ultipa-graph/ultipa-node-sdk";
      
      let sdkUsage = async () => {
      
        // omit code of establishing server connection 'conn'
        
        let resp = await conn.updateGraph({
          oldGraphSetName: "testGraph",
          newGraphSetName: "newGraph", 
          newDesc: "rename testGraph as newGraph"
        });
        console.log(resp.status.code_desc);
        
      };
      
      sdkUsage();
      

      deleteGraph()

      Method and interface:

      deleteGraph(req: RequestType.Graph, 
      			commonReq?: RequestType.RequestConfig
      ): Promise<ULTIPA.Response<null>>
      
      
      interface Graph {
      	name: string;
      }
      

      Example: Delete graphset 'newGraph'

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