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

14 lines
233 B
Plaintext

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