[Avg. reading time: 1 minute]

Data Profiling


// Count all nodes
MATCH (n) RETURN count(n)

// Count all relationships
MATCH ()-->() RETURN count(*);

// Display constraints and indexes
:schema

// List node labels
CALL db.labels()

// List relationship types
CALL db.relationshipTypes()

// What is related, and how
CALL db.schema.visualization()

#neo4j #data-profilingVer 5.5.3

Last change: 2025-10-15