(g, entity_type, lbl, *props, sync=False)
| 79 | return res |
| 80 | |
| 81 | def create_unique_constraint(g, entity_type, lbl, *props, sync=False): |
| 82 | return create_constraint(g, "UNIQUE", entity_type, lbl, *props, sync=sync) |
| 83 | |
| 84 | def create_mandatory_constraint(g, entity_type, lbl, *props, sync=False): |
| 85 | return create_constraint(g, "MANDATORY", entity_type, lbl, *props, sync=sync) |
no test coverage detected