To display the nodes with the most properties defined, run the following Cypher Statement:
Example Cypher Query
MATCH (n)
RETURN labels(n), keys(n), size(keys(n)), count(*)
ORDER BY size(keys(n)) DESC
Representative output is similar to:
labels(n) | keys(n) | size(keys(n)) | count(*) |
---|---|---|---|
[Movie] |
[TotalRevenue, year_of_release, name, id] |
4 |
1 … |
The first row of output indicates that there is a Label named Movie, which has 4 properties (TotalRevenue, year_of_release, name, id) and there is 1 node defined with that Label and those properties.
See also this sample image