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

      Variables

      A variable is a unique name (identifier) assigned to represent a collection of data of a specific type. Variables allow users to reference these data throughout the query, enabling data retrieval, manipulation, and further operations.

      Graph Pattern Variables

      Graph pattern variables include:

      These variables can be declared at specific places within path patterns, allowing them to be bound to nodes, edges, or paths that match the pattern.

      In this query, n is a node variable bound to a list of nodes, e is an edge variable bound to a list of edges, p is a path variable that holds a path binding:

      MATCH p = (:User {_id: "U01"})<-[e:Follows]-(n:User)
      RETURN n, e, p
      

      LET Variable Definition

      The LET statement allows you to define variables which effectively adds columns to the binding table.

      LET i = 2
      RETURN i + 1
      

      Unreferenced Variables

      It is generally a good practice to remove any unreferenced variables from the query. For example,

      MATCH (a)-[e]->(b)
      RETURN e
      

      If you don't need to reference the nodes bound to a and b, you can rewrite the query as:

      MATCH ()-[e]->()
      RETURN e
      

      Unreferenced variables do not cause syntax errors but can lead to inefficiencies and reduced readability. It is best to avoid declaring variables you do not intend to use.

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