Data Model
Overview
This section covers how the driver exposes your Neo4j graph database, and provides more information on executing SQL to Neo4j APIs.
Key Features
- The driver models Neo4j graph node labels and relationships as relational views, allowing you to write SQL to query Neo4j data.
- Stored procedures allow you to execute operations to Neo4j.
- Live connectivity to these objects means any changes to your Neo4j account are immediately reflected when using the driver.
Modeling Node Graphs
Modeling Node Graphs details how node labels and relationships are exposed as views, as well as how properties are surfaced as columns.
Node and Relationship Filtering
The driver supports filtering which node labels and relationships are modeled as views. See Filtering Nodes and Relationships for more information.