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

Function drop_unique_node_constraint

tests/flow/constraint_utils.py:115–116  ·  view source on GitHub ↗
(g, lbl, *props)

Source from the content-addressed store, hash-verified

113 return drop_constraint(g, "MANDATORY", lbl_type, lbl, *props)
114
115def drop_unique_node_constraint(g, lbl, *props):
116 return drop_unique_constraint(g, "NODE", lbl, *props)
117
118def drop_unique_edge_constraint(g, lbl, *props):
119 return drop_unique_constraint(g, "RELATIONSHIP", lbl, *props)

Calls 1

drop_unique_constraintFunction · 0.85