I'm wondering, within Cypher if there is a way to get a count of all nodes downstream of some node x.
For my particular use-case I have a number of graphs, which are separate entities, but stored in the same instance. I would like to find out, for each graph, what the node and relationship count is.
I already have this for relationships start r=rel() return count()
and this for nodes start n=node() return count()
for everything in the database.
Many thanks,
Eamonn