Giter Club home page Giter Club logo

Comments (3)

espiegelberg avatar espiegelberg commented on August 27, 2024

public interface StudentRepository extends GraphRepository {

Page<Student> findByName(@Param("name") String name, Pageable pageable);

@Query("match (s1:Student)-[r:BUDDY]-(sb:StudyBuddy)-[r2:BUDDY]-(s2:Student) where id(s1) = {studentId} return s2")
Set<Student> findStudyBuddyStudents_no_paginiation(@Param("studentId") Long studentId);

@Query("match (s1:Student)-[r:BUDDY]-(sb:StudyBuddy)-[r2:BUDDY]-(s2:Student) where id(s1) = {studentId} return s2 order by s2.name {placeholder} ")
Set<Student> findStudyBuddyStudents_no_paginiation_custom_sort(@Param("studentId") Long studentId, @Param("placeholder") String placeholder);

@Query("match (s1:Student)-[r:BUDDY]-(sb:StudyBuddy)-[r2:BUDDY]-(s2:Student) where id(s1) = {studentId} return s2")
Page<Student> findStudyBuddyStudents_with_paginiation(@Param("studentId") Long studentId, Pageable pageable);

}

from sdn-university.

luanne avatar luanne commented on August 27, 2024

@espiegelberg paging, sorting and custom depths are not yet supported on custom queries (@query) or derived finders in SDN. There's a JIRA issue to track this: https://jira.spring.io/browse/DATAGRAPH-653
and the documentation stating that this is not yet supported has already been improved (available in the next release).

from sdn-university.

vdoan avatar vdoan commented on August 27, 2024

@luanne maybe I am missing something. Can you direct me to where @Depth is supported for custom queries on paging, sorting. Thanks in advance

from sdn-university.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.