문제

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