graphdb_load_edges method

Pointer<Char> graphdb_load_edges(
  1. Pointer<Box> box,
  2. Pointer<Char> nodeId
)

Load edges for a node (returns malloc'ed JSON string)

Implementation

ffi.Pointer<ffi.Char> graphdb_load_edges(
  ffi.Pointer<Box> box,
  ffi.Pointer<ffi.Char> nodeId,
) {
  return _graphdb_load_edges(box, nodeId);
}