mirror of https://gitee.com/bigwinds/arangodb
14 lines
310 B
Plaintext
14 lines
310 B
Plaintext
avocado> var Graph = require("graph").Graph;
|
|
|
|
avocado> g = new Graph("vertices", "edges");
|
|
Graph("vertices", "edges")
|
|
|
|
avocado> v = g.addVertex();
|
|
Vertex(<graph>, "153246:2310672")
|
|
|
|
avocado> e = g.addEdge(v, v, "self", { "weight" : 10 });
|
|
Edge(<graph>, "3999653:5570857")
|
|
|
|
avocado> e.getProperty("weight");
|
|
10
|