is there any api for neo4j like JpaSpecificationExecutor api?

41 views Asked by At

I changed my oracle db to neo4J and I want to use JpaSpecificationExecutor, but it's not working for neo4j. Which packet do I have to use for specification filters?

enter image description here

1

There are 1 answers

1
cybersam On

Spring Data JPA is for relational databases. Since Neo4j is a graph database, you would need to use Spring Data Neo4j (SDN) to get something functionally similar to JPA. However, JPA-specific interfaces like JpaSpecificationExecutor do not exist in SDN.