Spring Data Neo4j 4和Pageable vs repository方法ORDER BY参数

时间:2017-01-08 16:39:12

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

@Query("MATCH (parentD:Decision)-[:CONTAINS]->(childD:Decision)-[ru:CREATED_BY]->(u:User) WHERE id(parentD) = {parentDecisionId} RETURN childD, ru, u ORDER BY childD.createDate DESC")
List<Decision> getChildDecisions(@Param("parentDecisionId") Long parentDecisionId);

是否可以通过Spring Data Neo4j 4存储库方法参数传递childD.createDate之类的订单表达式以及ASCDESC等订单方向?如果是的话,请你举个例子。

或者在这种情况下我需要使用Pageable吗?

0 个答案:

没有答案