I'm trying to list all nodes from an index in my neo4j database. The following code works however it only prints out about 600 nodes when I have over 10K in the index. I suspect I'm using the wrong the method. Any help is appreciated.
myindex = graph_db.get_or_create_index(neo4j.Node, "nodeID")
allnodes = myindex.query("nodeID:*")
for i in allnodes:
value1 = "{0}".format(i['nodeID'])
print value1