7e5dddecae
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D799
6 lines
183 B
Python
6 lines
183 B
Python
from setup import LABEL_COUNT, LABEL_PREFIX
|
|
|
|
for i in range(LABEL_COUNT):
|
|
print("UNWIND range(0, 30) AS i MATCH (n:%s%d) "
|
|
"RETURN n SKIP 1000000;" % (LABEL_PREFIX, i))
|