Module
Handling results
In the previous module, you learned how to install the driver, connect to an instance, and run your first query.
In this module, you will learn how to handle the results of a query. The Neo4j Java Driver returns data in various formats, and understanding how to work with these types is essential for building robust applications.
You will learn about:
- Working with graph types (Full definition for node (opens in a new tab)A vertex in a graph. In a property graph it can carry labels and properties., Full definition for relationship (opens in a new tab)A named, directed connection between two nodes. Every relationship has a type, a start node and an end node., and Paths)
- Handling temporal types (dates and times)
- Using spatial types (points and distances)
- Transforming query results into different formats
By the end of this module, you'll be able to work confidently with all the data types returned by Neo4j queries.