Javaの関係のプロパティ(私の場合はタイムスタンプ)によってトラバーサルがたどるパスを並べ替えるために、Neo4jに(おそらくPathExpander
orを使用して)とにかくありますか?RelationshipExpander
ほとんどすべての API とコミュニティの議論を検索しましたが、ヒントが見つかりません。
Javaの関係のプロパティ(私の場合はタイムスタンプ)によってトラバーサルがたどるパスを並べ替えるために、Neo4jに(おそらくPathExpander
orを使用して)とにかくありますか?RelationshipExpander
ほとんどすべての API とコミュニティの議論を検索しましたが、ヒントが見つかりません。
次のように、プロパティの値に応じてパスを拡張するパス エクステンダーを作成できます (昇順が必要だとします)。
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() {...});