1
0
Fork 0
arangodb/Doxygen/Examples.Durham/graph35

14 lines
242 B
Plaintext

avocado> var Graph = require("graph").Graph;
avocado> g = new Graph("graph", "vertices", "edges");
Graph("vertices", "edges")
avocado> f = g.getVertices();
[vertex iterator]
avocado> f.hasNext();
true
avocado> v = f.next();
Vertex(18364)