mg_relationship

Represents a relationship from a labeled property graph.

Consists of a unique identifier (within the scope of its origin graph), identifiers for the start and end nodes of that relationship, a type and a map of properties. A relationship owns its type string and property map.

  1. struct mg_relationship
    version(unittest)
    extern (C)
    struct mg_relationship {}
  2. struct mg_relationship

Members

Variables

end_id
long end_id;
Undocumented in source.
id
long id;
Undocumented in source.
properties
mg_map* properties;
Undocumented in source.
start_id
long start_id;
Undocumented in source.
type
mg_string* type;
Undocumented in source.

Meta