1
0
Fork 0
arangodb/Doxygen/Examples.Durham/graph-edge-get-property

9 lines
143 B
Plaintext

arango> v = g.addVertex(1);
Vertex(1)
arango> e = g.addEdge(v, v, 2, "self", { "weight" : 10 });
Edge(2)
arango> e.getProperty("weight");
10