Neo4j API没有返回所有关系

时间:2014-06-02 21:00:08

标签: java neo4j

我正在使用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条路径。

以下图表是从可视化网络界面

获得的

graph visualization from webadmin

0 个答案:

没有答案