Search⌘ K
AI Features

Property Graph Model

Explore the property graph model as implemented in Neo4j, focusing on nodes and relationships decorated with properties, labels, and types. Understand how paths connect nodes and how to use Cypher queries to perform graph traversals and answer path-related questions.

Distinguishing feature

The distinguishing feature of a property graph is that graph vertices and edges may be decorated with attributes (or properties). In Neo4j parlance, we talk about nodes (for vertices) and relationships (for edges).

We’ll discuss property graphs here from a Neo4j perspective.

Graph elements

The graph elements we’ll ...