Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-12-2018 10:16 AM
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
Solved! Go to Solution.
10-12-2018 05:52 PM
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.
10-12-2018 05:52 PM
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.
05-30-2019 08:36 AM
Can you give a link to the documentation for this procedure?
06-19-2019 03:13 PM
search for: db.schema.nodeTypeProperties() on
https://neo4j.com/docs/operations-manual/current/reference/procedures/
All the sessions of the conference are now available online