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

Function create_mandatory_node_constraint

tests/flow/constraint_utils.py:97–98  ·  view source on GitHub ↗
(g, lbl, *props, sync=False)

Source from the content-addressed store, hash-verified

95 return create_unique_constraint(g, "RELATIONSHIP", rel, *props, sync=sync)
96
97def create_mandatory_node_constraint(g, lbl, *props, sync=False):
98 return create_mandatory_constraint(g, "NODE", lbl, *props, sync=sync)
99
100def create_mandatory_edge_constraint(g, lbl, *props, sync=False):
101 return create_mandatory_constraint(g, "RELATIONSHIP", lbl, *props, sync=sync)

Callers 3

test06_constraint_fixMethod · 0.85

Calls 1

Tested by 3

test06_constraint_fixMethod · 0.68