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