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

v5.0
Search
    English
    v5.0

      Comments

      Single-Line Comments

      In GQL, single-line comments can be written using either two forward slashes // or two minus signs --. Everything following // or -- on the same line is treated as a comment and ignored during query execution.

      MATCH (:User {name: "rowlock"})-[:Follows]->(n:User) // Retrieves users who follow rowlock
      RETURN n.name
      

      A path expression should not juxtapose a token that exposes a minus sign on the right (]-, <-, -) followed by a token that exposes a minus sign on the left (-[, ->, -), as this combination introduces the comment symbol --.

      This query throws syntax error since it concatenates <- and - without any separators:

      MATCH (:User {name: "rowlock"})<--(n:User)
      RETURN n
      

      Instead, you can use a space between the two abbreviated edge patterns:

      MATCH (:User {name: "rowlock"})<- -(n:User)
      RETURN n
      

      Multi-Line Comments

      Multi-line comments begin with a forward slash and asterisk (/*) and end with an asterisk and forward slash (*/), allowing for comments that span multiple lines.

      /* This query retrieves users who follow rowlock,
      and returns all their names */
      MATCH (:User {name: "rowlock"})-[:Follows]->(n:User)
      RETURN n.name
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写