Hi, exists some way how to fetch jpa entities using my own repository with my own custom logic and then convert them to odata or pass them to processor?
eg.
List<MyEntity> entities = myRepository.findByXXXX(); // this entities i want proccess to odata
Iam using spring boot, spring data
Thanks for help