@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
之类的订单表达式以及ASC
或DESC
等订单方向?如果是的话,请你举个例子。
或者在这种情况下我需要使用Pageable
吗?