我正在使用Neo4j API从节点获取所有关系,但似乎neo4j没有返回所有关系。
以下代码:
Node node = graphDatabaseService.getNodeById(nodeId);
for (Relationship relationship : node
.getRelationships(DynamicRelationshipType.withName("Left"))){
nodes.add(relationship.getOtherNode(node).getId());
}
只返回200个关系
,而
for (Path position: graphDatabaseService.traversalDescription()
.depthFirst()
.relationships(DynamicRelationshipType.withName("Left"))
.evaluator(Evaluators.toDepth(1)).traverse(initial)) {
nodes.add(position.endNode().getId());
}
我只能获得100条路径。
以下图表是从可视化网络界面
获得的