I'm trying to achieve fulltext query by using spring data neo4j repository method findAllByQuery, but i am not able to pass pagination parameters.
From [doc]: http://docs.spring.io/spring-data/neo4j/docs/current/reference/htmlsingle/#d0e2149
@NodeEntity
class Person {
@Indexed(indexName = "people-search", type=FULLTEXT) String name;
}
GraphRepository<Person> graphRepository =
template.repositoryFor(Person.class);
Person mark = graphRepository.findAllByQuery("people-search", "name", "ma*");