2

Javaの関係のプロパティ(私の場合はタイムスタンプ)によってトラバーサルがたどるパスを並べ替えるために、Neo4jに(おそらくPathExpanderorを使用して)とにかくありますか?RelationshipExpander

ほとんどすべての API とコミュニティの議論を検索しましたが、ヒントが見つかりません。

4

1 に答える 1

4

次のように、プロパティの値に応じてパスを拡張するパス エクステンダーを作成できます (昇順が必要だとします)。

public class OrderPathExpander implements PathExpander<String> {

private final RelationshipType relationshipType;
private final Direction direction;

public OrderPathExpander( RelationshipType relationshipType, Direction direction )
{
    this.relationshipType = relationshipType;
    this.direction = direction;
}
@Override
public Iterable<Relationship> expand(Path path, BranchState<String> state)
{
    List<Relationship> results = new ArrayList<Relationship>();
    if ( path.length() == 0 ) {
        for ( Relationship r : path.endNode().getRelationships( relationshipType, direction ) )
        {
                results.add( r );

        }

    }
    else {
    for ( Relationship r : path.endNode().getRelationships( relationshipType, direction ) )
    {
        if ( r.getProperty("timestamp") >= (path.lastRelationship().getProperty("timestamp"))  )
        {
            results.add( r );
        }
    }
    }
    return results;
}
@Override
public PathExpander<String> reverse()
{
    return null;
}

}

次に、トラベラルでパスエクステンダーを使用します。

TraversalDescription td = Traversal.description()
        .breadthFirst()
        .expand(new OrderPathExpander(YourRelationshipType, Direction.INCOMING))
        .evaluator(new Evaluator() {...});
于 2013-08-20T15:46:32.607 に答える