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.
我们的项目中有一个需求,我们想使用 Neo4j java api 创建可视化配置文件。我用谷歌搜索,但没有得到任何有用的东西。
无论如何使用neo4j java api创建样式可视化配置文件。我们正在使用 neo4j-1.8.1。
您可以使用getExecutionPlanDescription从结果中获取查询的执行计划。
getExecutionPlanDescription
Result result = graphDb.execute(query); System.out.println(result.getExecutionPlanDescription());