mg_node

Represents a node from a labeled property graph.

Consists of a unique identifier (withing the scope of its origin graph), a list of labels and a map of properties. A node owns its labels and properties.

Maximum possible number of labels allowed by Bolt protocol is uint.max.

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

Members

Variables

id
long id;
Undocumented in source.
label_count
uint label_count;
Undocumented in source.
labels
mg_string** labels;
Undocumented in source.
properties
mg_map* properties;
Undocumented in source.

Meta