UltipaDocs
Try Playground
  • Introduction
  • RESTful API
    • Installation
    • Connection
      • Request Configuration
      • Querying Methods
      • UQL Execution
      • Graphset Management
      • Schema and Property Management
      • Data Insertion and Deletion
      • Query Acceleration
      • Algorithm Management
      • Downloads and Exports
      • Process and Task Management
      • Access Management
      • Others
    • Result Processing
    • Types Mapping
    • Installation
    • Connection
      • Request Configuration
      • Querying Methods
      • UQL Execution
      • Graphset Management
      • Schema and Property Management
      • Data Insertion and Deletion
      • Query Acceleration
      • Algorithm Management
      • Downloads and Exports
      • Process and Task Management
      • Access Management
      • Others
    • Result Processing
    • Types Mapping
    • Installation
    • Connection
      • Request Configuration
      • Querying Methods
      • UQL Execution
      • Graphset Management
      • Schema and Property Management
      • Data Insertion and Deletion
      • Query Acceleration
      • Algorithm Management
      • Downloads and Exports
      • Process and Task Management
      • Access Management
      • Others
    • Result Processing
    • Types Mapping
    • Installation
    • Connection
      • Request Configuration
      • Querying Methods
      • UQL Execution
      • Graphset Management
      • Schema and Property Management
      • Data Insertion and Deletion
      • Query Acceleration
      • Algorithm Management
      • Downloads and Exports
      • Process and Task Management
      • Access Management
      • Others
    • Result Processing
    • Types Mapping
    • Installation
    • Connection
      • Request Configuration
      • Querying Methods
      • UQL Execution
      • Graphset Management
      • Schema and Property Management
      • Data Insertion and Deletion
      • Query Acceleration
      • Algorithm Management
      • Downloads and Exports
      • Process and Task Management
      • Access Management
      • Others
    • Result Processing
    • Types Mapping
  1. Docs
  2. /
  3. Ultipa Drivers
  4. /
  5. Java

Result Processing

The output of the driver depends on the specific request made. Some methods, like uql(), return a Response object, which requires you to extract the data and cast it into the corresponding driver type to serve the Java application. Other methods, like showGraph(), showSchema(), and showProperty(), return data of the driver type (GraphSet, Schema, Property, etc.) directly. Please read Types Mapping Ultipa and Java for a list of the core driver types.

Response

The uql() and some other methods return a Response object. Response has the following fields:

Field
Type
Description
aliasesList<Alias>List of aliases; each has name and type of the data.
itemsMap<String, DataItem>Map of aliases and their corresponding data (DataItem).
insertNodesReplyUltipa.InsertNodesReplyResult of batch node insertions.
insertEdgesReplyUltipa.InsertEdgesReplyResult of batch edge insertions.
exportDataExportDataResult of data export operations.
explainPlanExplainPlanExplanation tree for the UQL statement.
statusStatusExecution status of the request.
statisticsStatisticsStatistics of the request execution, including nodeAffected, edgeAffected, totalCost, engineCost, etc.

If the query returns data, you can extract each item by its alias using the get() or alias() method. Both methods return a DataItem object, which embeds the query result. To map the DataItem to the corresponding driver type, please read Types Mapping Ultipa and Java.

get()

Retrieves data by the alias index.

Parameters:

  • Integer: Index of the alias.

Returns:

  • DataItem: The retrieved data.
Java
Response response = client.uql("find().nodes() as n return n._id, n._uuid limit 3");
System.out.println(response.get(0).toJson());

The UQL statement returns two aliases n._id and n._uuid; the get() method retrieves the alias n._id at index 0.

Output
["{\"type\":\"STRING\",\"values\":[\"u604131\",\"u604510\",\"u604614\"],\"name\":\"n._id\"}"]

alias()

Retrieves data by the alias name.

Parameters:

  • String: Name of the alias.

Returns:

  • DataItem: The retrieved data.
Java
Response response = client.uql("find().nodes() as n return n._id, n._uuid limit 3");
System.out.println(response.alias("n._uuid").toJson());

The UQL statement returns two aliases n._id and n._uuid; the alias() method retrieves the alias n._uuid by its name.

Output
["{\"type\":\"UINT64\",\"values\":[\"1\",\"2\",\"3\"],\"name\":\"n._uuid\"}"]