memgraph/tests/benchmark_infra/groups/match/vertex_on_label_property.run.py

4 lines
199 B
Python
Raw Normal View History

from setup import LABEL_PREFIX, PROP_PREFIX, MAX_PROPS, LABEL_COUNT, rint
print("MATCH (n:%s%d {%s%d: %d}) RETURN n" % (
LABEL_PREFIX, rint(LABEL_COUNT), PROP_PREFIX, rint(MAX_PROPS), rint(10)))