6d78873ace
Reviewers: dgleich, buda, florijan Reviewed By: dgleich Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D984
10 lines
306 B
Python
10 lines
306 B
Python
import random
|
|
import common
|
|
|
|
random.seed(0)
|
|
|
|
for i in range(common.VERTEX_COUNT * common.QUERIES_PER_VERTEX):
|
|
a = int(random.random() * common.VERTEX_COUNT)
|
|
b = int(random.random() * common.VERTEX_COUNT)
|
|
print("MATCH (a: Node {id: %d}), (b: Node {id: %d}) CREATE (a)-[:Friend]->(b);" % (a, b))
|