Spring Data Neo4j

org.springframework.data.neo4j.repository
Interface TraversalRepository<T>

All Known Subinterfaces:
GraphRepository<T>
All Known Implementing Classes:
AbstractGraphRepository, NodeGraphRepositoryImpl, RelationshipGraphRepository

public interface TraversalRepository<T>

Since:
29.03.11
Author:
mh

Method Summary
<N> Iterable<T>
findAllByTraversal(N startNode, org.neo4j.graphdb.traversal.TraversalDescription traversalDescription)
          Traversal based finder that returns a lazy Iterable over the traversal results
 

Method Detail

findAllByTraversal

<N> Iterable<T> findAllByTraversal(N startNode,
                                   org.neo4j.graphdb.traversal.TraversalDescription traversalDescription)
Traversal based finder that returns a lazy Iterable over the traversal results

Type Parameters:
N - Start node entity type
Parameters:
startNode - the node to start the traversal from
traversalDescription -
Returns:
Iterable over traversal result

Spring Data Neo4j

Copyright © 2012 SpringSource. All Rights Reserved.