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)
  • Ultipa Powerhouse (v5)

Standalone

learn more about the four main severs in the architecture of Ultipa Powerhouse (v5) , click

here

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.3
Search
    English
    v5.3

      Query Composition

      A GQL query is composed of multiple statements. Each statement is a unit that can be executed by the database. A typical GQL query begins with a MATCH statement to retrieve data from the graph, and ends with a RETURN statement to output results to the client.

      A clause is a component of a statement that performs a specific function, such as WHERE for filtering. A clause on its own is not a complete instruction, but must be part of a statement.

      GQL supports the following statement for querying the database:

      Statement
      Description
      Supported Clauses
      MATCH Retrieves nodes, edges, and paths from the graph using patterns. WHERE, YIELD
      FILTER Discards records in the intermediate result table that do not satisfy the specified conditions.
      LET Defines variables and adds corresponding columns to the intermediate result table.
      FOR Unnests a list into individual rows.
      ORDER BY Sorts records in the intermediate result or output table.
      LIMIT Restricts the number of records to be retained in the intermediate result or output table.
      SKIP Discards a specified number of records from the beginning of the intermediate result or output table.
      CALL Invokes an inline procedure or named procedure. YIELD
      RETURN Specifies the columns to include in the output table. GROUP BY

      Linear Query

      A linear query executes sequentially, where each statement is processed one after another without any branching or conditional logic. The result is returned in a straightforward progression.

      Every linear query must conclude with a result statement, which can be one of the following:

      • RETURN ...
      • RETURN ... ORDER BY ...
      • RETURN ... ORDER BY ... SKIP ...
      • RETURN ... ORDER BY ... LIMIT ...
      • RETURN ... ORDER BY ... SKIP ... LIMIT ...
      • RETURN ... SKIP...
      • RETURN ... SKIP ... LIMIT ...
      • RETURN ... LIMIT ...

      The RETURN is mandatory. Optional result modifiers - ORDER BY, SKIP, and LIMIT - may follow RETURN; however, only the combinations listed above are valid. Unsupported combinations—such as RETURN ... LIMIT ... SKIP ... are not permitted.

      For example, this is a linear query where the MATCH, FILTER and RETURN statements processed in a linear order:

      MATCH (:User {_id: "U01"})-[:Follows]->(u:User)
      FILTER u.city = "New York"
      RETURN u
      

      Composite Query

      A composite query combines the result sets of multiple linear queries with query conjunctions (UNION, EXCEPT, INTERSECT, and OTHERWISE).

      For example, this is a composite query that uses UNION ALL to combine the result sets of two linear queries:

      MATCH (n:Club) RETURN n
      UNION
      MATCH (n:User) RETURN n
      

      Learn more about composite query →

      Advanced Linear Composition with NEXT

      The NEXT statement chains multiple linear or composite query statements, enabling more complex queries.

      Learn more about NEXT →

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

      Copyright © 2019-2025 Ultipa Inc. – All Rights Reserved   |  Security   |  Legal Notices   |  Web Use Notices