Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在蓝图中使用 Neo4jGraph,如何使用 API 中的更多 Neo4j 特定方法?
您必须使用以下方法获取底层 Neo4j 实例:
blueprintsGraph.getRawGraph()
返回GraphDatabaseService。在 Vertex、Edge 和 Index 上也有类似的“原始”方法getRawVertex(),getRawEdge()和getRawIndex()分别。
GraphDatabaseService
getRawVertex()
getRawEdge()
getRawIndex()