MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / create_nodes_range

Function create_nodes_range

tests/flow/random_graph.py:66–73  ·  view source on GitHub ↗
(node, map)

Source from the content-addressed store, hash-verified

64
65
66def create_nodes_range(node, map):
67 node_count = node["count"]
68 data = []
69 for i in range(0, node_count):
70 item = create_node_map(node, i)
71 data.append(item)
72
73 return data, f"UNWIND $nodes AS {map}"
74
75
76def create_node_pattern(node, map):

Callers 1

create_random_graphFunction · 0.85

Calls 1

create_node_mapFunction · 0.85

Tested by

no test coverage detected