Is it possible to fetch Page results when using Spring Data Graph (Neo4J) as the data store?

The findAll(Pageable) seems to be the only Pageable query availalble when using the GraphRepository. What I am looking for is Pageable APIs for other findBy***() like queries.

Perhaps, there may be a completely different (recommended) way to Page results using Spring Data Graph. Thoughts on that are welcome as well!

link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Spring Data Neo4j (2.0 currently in SNAPSHOT but soon RC1) added Page support for the derived and annotated queries. The findAll() is inherited from CRUD-Repository.

We could add Page support for the default query methods. Could you raise a JIRA issue for that?

Example for derived and @Query annotated Page methods.

interface UserRepository extends GraphRepository<User> {
   // derived method
   Page<User> findByTag(String tag, Pageable page);
   @Query("start user=node({0}) match user-[r:RATED]-product where r.stars > 3 return product order by r.stars desc")
   Page<Product> getRatedProducts(User user);
}

Just add cypher (or gremlin) as dependency to your application:

<dependency>
   <groupId>org.neo4j</groupId>
   <artifactId>neo4j-cypher</artifactId>
   <version>${neo4j.version}</version>
</dependency>
link|improve this answer
Thanks for the details, @Michael. I am good even if the derived methods work - but when I use them, I get an error - "Cypher is not available, please add it to your dependencies". Any ideas why? Meanwhile, I will open the JIRA issue. – Saket Nov 7 '11 at 4:08
adding the dependency fixed that error - thanks! But I am now having issues with querying for two properties = getByProperty1AndProperty2() – Saket Nov 9 '11 at 17:40
what issues? Please provide some more context. – Michael Hunger Dec 1 '11 at 14:36
feedback

Your Answer

 
or
required, but never shown

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