cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Count of properties

how to list each property of the node for the complete db and the corresponding count. Idea is to reconcile the data received from source system is loaded or not #neo4j-graph-platform:cypher

1 ACCEPTED SOLUTION

In Neo4j 3.5 there will be a procedure.

Otherwise you can just aggregate:

match (n) 
unwind keys(n) as key
return labels(n), key, count(*)

But it is a pretty expensive operation.

View solution in original post

3 REPLIES 3

In Neo4j 3.5 there will be a procedure.

Otherwise you can just aggregate:

match (n) 
unwind keys(n) as key
return labels(n), key, count(*)

But it is a pretty expensive operation.

Can you give a link to the documentation for this procedure?