SpringBoot + JUnit5 + Neo4j

There is no question that running any database in memory, during your unit test may not be the best approach. In general, using a method like TestContainers is a better approach to this problem. The only issue when we use such an approach is that we need a docker environment to run this procedure, which … Read More

Neo4j user-defined procedures

I have been working on a project and part of the research includes the usage of Neo4J as one of the databases. I checked the usage of pure Cypher but trying to replicate a VP-tree on Neo4J using only Cypher didn’t prove performant enough. We decided to give a try to use a Neo4j user-defined … Read More