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?

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?

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
JpaSpecificationExecutordo not exist in SDN.