| 434 | } |
| 435 | |
| 436 | const char *GraphContext_GetEdgeRelationType(const GraphContext *gc, Edge *e) { |
| 437 | int reltype_id = Edge_GetRelationID(e); |
| 438 | ASSERT(reltype_id != GRAPH_NO_RELATION); |
| 439 | return gc->relation_schemas[reltype_id]->name; |
| 440 | } |
| 441 | |
| 442 | uint GraphContext_AttributeCount(GraphContext *gc) { |
| 443 | pthread_rwlock_rdlock(&gc->_attribute_rwlock); |
nothing calls this directly
no test coverage detected