Boltx.Types.Node (Boltx v0.0.2)

Self-contained graph node.

A Node represents a node from a Neo4j graph and consists of a unique identifier (within the scope of its origin graph), a list of labels and a map of properties.

https://github.com/boltprotocol/boltprotocol/blob/master/v1/_serialization.asciidoc#node

Summary

Types

@type t() :: %Boltx.Types.Node{
  element_id: String.t(),
  id: integer(),
  labels: [String.t()],
  properties: map()
}