7e5dddecae
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D799
6 lines
194 B
Python
6 lines
194 B
Python
from setup import LABEL_INDEX, ID, VERTEX_COUNT, rint
|
|
|
|
print("UNWIND range(0, 10000) AS i "
|
|
"MATCH (n:%s {%s: %d}) RETURN n SKIP 1000000" % (
|
|
LABEL_INDEX, ID, rint(VERTEX_COUNT)))
|