b98c12ea89
Reviewers: mferencevic Reviewed By: mferencevic Differential Revision: https://phabricator.memgraph.io/D600
4 lines
164 B
Python
4 lines
164 B
Python
from setup import ID, rint, VERTEX_COUNT
|
|
print("MATCH (n)-[r]->(m) WHERE n.%s = %d AND m.%s = %d RETURN *" % (
|
|
ID, rint(VERTEX_COUNT), ID, rint(VERTEX_COUNT)))
|