Skip to content

Frames Ecosystem

Bryn Cooke edited this page Jul 21, 2013 · 4 revisions

Frames is a bare-bones library. Luckily, its part of a larger ecosystem of graph technologies. When using Frames, you will find yourself making use of framed domain objects and Blueprints.

Getting Indexes

Frames has no notion of indexes. To obtain an index, use Blueprints.

IndexedGraph graph = framedGraph.getBaseGraph(); // get reference to graph
Index index = graph.getIndex("myIndex", Vertex.class);
Clone this wiki locally