How can I add filter to given traversal :

TraversalDescription td = Traversal.description() .breadthFirst() .relationships( RelTypes.KNOWS ) .evaluator( Evaluators.excludeStartPosition()).evaluator(Evaluators.atDepth(1))

So that only nodes with property Name == John will be in the result ?

Thanks for any hints

link|improve this question

54% accept rate
feedback

1 Answer

Evaluator e = new Evaluator() {

            @Override
            public Evaluation evaluate(Path arg0) {
                // TODO Auto-generated method stub
                if(arg0.endNode().getProperty("Name").equals("John")){
                    return Evaluation.INCLUDE_AND_CONTINUE;
                }else{
                    return Evaluation.EXCLUDE_AND_CONTINUE;
                }
            }
        };

        TraversalDescription td = Traversal.description()
                .breadthFirst()
                .relationships( RelTypes.KNOWS )
                .evaluator( Evaluators.excludeStartPosition()).evaluator(Evaluators.atDepth(1)).evaluator(e);

        return td.traverse(a);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.