Spring Data Neo4j 4.2.0和分页

时间:2016-07-11 09:09:56

标签: neo4j cypher spring-data-neo4j spring-data-neo4j-4

以前使用SDN 3.x我使用了以下查询:

        jQuery('.your_input_class').val("");

现在我想将此功能移植到新的SDN 4.2.0快照,但它失败并出现以下异常:

@Query(value = "START d=node:node_auto_index({autoIndexQuery}) MATCH (d:Decision) RETURN d")
Page<Decision> searchDecisions(@Param("autoIndexQuery") String autoIndexQuery, Pageable page);

如何正确移植此查询并使用SDN 4.2.0中引入的分页支持?

0 个答案:

没有答案