Is there a way to return just an integer through cypher?
I am working with neo4j and the javascript driver. However when I do a count()
I get {low: 10, high: 0}
. I would like to force this to return a low integer instead of the object above. Is this possible through cypher?
Note that I don't want to do this in the neo4j javascript driver and prefer to do this in cypher since I know it will be a low number...