indradb 0.12.1

A graph database server
Documentation
1
2
3
4
5
6
7
8
9
10
11
local trans = transaction();
local id = trans:create_vertex("foo");
local q = VertexQuery.vertices({id}):outbound_edges("purchased", "bar", 10, 10);

function test_get_edge_range_bad_high()
    trans:get_edges(q);
end

local status, err = pcall(test_get_edge_range_bad_high)
assert(status == false);
assert(tostring(err) == "error converting Lua non-number to datetime");