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 Blaze (v4)

Standalone

Please complete this required field.

Please complete this required field.

Please complete this required field.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Please complete this required field.

Mac addresses of all servers, separated by line break or comma.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Maximum Shard Services
Maximum Total Cores for Shard Service
Maximum HDC Services
Maximum Total Cores for HDC Service
Applied Validity Period(days)
Effective Date
Expired Date
Mac Address
Reason for Application
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
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 are 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 followed by 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 followed by 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
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      Privacy Policy.
      Please agree to continue.