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

Function GraphEntity_AddProperty

src/graph/entities/graph_entity.c:16–27  ·  view source on GitHub ↗

add a new property to entity

Source from the content-addressed store, hash-verified

14
15// add a new property to entity
16bool GraphEntity_AddProperty
17(
18 GraphEntity *e,
19 Attribute_ID attr_id,
20 SIValue value
21) {
22 ASSERT(e);
23
24 AttributeSet_Add(e->attributes, attr_id, value);
25
26 return true;
27}
28
29SIValue *GraphEntity_GetProperty
30(

Callers 2

Calls 1

AttributeSet_AddFunction · 0.85

Tested by

no test coverage detected