I'm running a script that iterates through all the nodes. Initially, I thought the maximum node id would correspond to the total number of nodes in the graph which I retrieved by this Cypher query over REST:
START n=node(*) RETURN count(n)
However, as I iterate through each number, I see that some nodes at certain ids just don't exist. So, this means my maximum id node is a number larger than the total number of nodes. Any idea how I can retrieve this number? I strongly prefer Cypher or Rest.