| 381 | } |
| 382 | |
| 383 | Schema *GraphContext_GetSchemaByID(const GraphContext *gc, int id, SchemaType t) { |
| 384 | Schema **schemas = (t == SCHEMA_NODE) ? gc->node_schemas : gc->relation_schemas; |
| 385 | if(id == GRAPH_NO_LABEL) return NULL; |
| 386 | return schemas[id]; |
| 387 | } |
| 388 | |
| 389 | Schema *GraphContext_GetSchema |
| 390 | ( |
no outgoing calls
no test coverage detected