| 335 | } |
| 336 | |
| 337 | unsigned short GraphContext_SchemaCount(const GraphContext *gc, SchemaType t) { |
| 338 | ASSERT(gc); |
| 339 | if(t == SCHEMA_NODE) return array_len(gc->node_schemas); |
| 340 | else return array_len(gc->relation_schemas); |
| 341 | } |
| 342 | |
| 343 | // enable all constraints |
| 344 | void GraphContext_EnableConstrains |
no test coverage detected