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

      Querying Methods

      Once the connection is established, you can send requests to query the database through various methods on the Connection object, categorized as follows:

      General Purpose Methods
      UQL Execution
      • uql()
      • uqlStream()
      Task Specific Methods
      Graphset Management
      • showGraph()
      • getGraph()
      • createGraph()
      • createGraphIfNotExist()
      • dropGraph()
      • alterGraph()
      • truncate()
      • compact()
      • hasGraph()
      • unmountGraph()
      • mountGraph()
      Schema and Property Management
      • showSchema()
      • getSchema()
      • showNodeSchema()
      • showEdgeSchema()
      • getNodeSchema()
      • getEdgeSchema()
      • createSchema()
      • createSchemaIfNotExist()
      • alterSchema()
      • dropSchema()
      • showProperty()
      • showNodeProperty()
      • showEdgeProperty()
      • getProperty()
      • getNodeProperty()
      • getEdgeProperty()
      • createProperty()
      • createPropertyIfNotExist()
      • alterProperty()
      • dropProperty()
      Data Insertion and Deletion
      • insertNodes()
      • insertEdges()
      • insertNodesBatchBySchema()
      • insertEdgesBatchBySchema()
      • insertNodesBatchAuto()
      • insertEdgesBatchAuto()
      • deleteNodes()
      • deleteEdges()
      Query Acceleration
      • lte()
      • ufe()
      • showIndex()
      • showNodeIndex()
      • showEdgeIndex()
      • createIndex()
      • dropIndex()
      • showFulltext()
      • showNodeFulltext()
      • showEdgeFulltext()
      • createFulltext()
      • dropFulltext()
      Algorithm Management
      • showAlgo()
      • installAlgo()
      • uninstallAlgo()
      • showExta()
      • installExta()
      • uninstallExta()
      Downloads and Exports
      • downloadAlgoResultFile()
      • downloadAllAlgoResultFile()
      • export()
      Process and Task Management
      • top()
      • kill()
      • showTask()
      • clearTask()
      • stopTask()
      Access Management
      • showPrivilege()
      • showPolicy()
      • getPolicy()
      • createPolicy()
      • alterPolicy()
      • dropPolicy()
      • showUser()
      • getUser()
      • createUser()
      • alterUser()
      • dropUser()
      • grantPolicy()
      • revokePolicy()
      Others
      • stats()
      • test()

      The task specific methods eliminate the need to explicitly write UQL. The following two examples use the uql() and showNodeProperty() methods respectively to retrieve the club-member node schema and print its associated properties. Notice that the latter is easier to write and returns the result as a list of Property directly. While with uql(), you need to extract the data from Response and cast it into Property.

      // Uses the uql() method
      let resp = await conn.uql("show().node_schema(@`club-member`)", requestConfig);
      let nodeList = resp.data.alias("_nodeSchema").asSchemas();
      console.log(nodeList.map((item) => item.properties));
      
      // Uses the showNodeProperty() method
      let resp = await conn.showNodeProperty("club-member", requestConfig);
      console.log(resp.data.map((item) => item.name));
      

      However, the uql() method serves all querying purposes and can be utilized when the task specific methods are not privided, such as for node, edge or path queries.

      Lastly, if you are retrieving a large amount of data from the database, it is recommended to use the the uqlStream() method to processes the result set incrementally.

      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写