Вопрос

I'm using the Neo4jGraph in Blueprints, how can I use more Neo4j specific methods from the API?

Это было полезно?

Решение

You have to grab the underlying Neo4j instance with:

blueprintsGraph.getRawGraph()

which returns GraphDatabaseService. There are also similar "raw" methods on Vertex, Edge and Index, getRawVertex(), getRawEdge() and getRawIndex() respectively.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top