Deploy a Procedure to Neo4J when using the embedded driver
I have some logic which needs direct node access to neo4j but the rest of the app using Spring Data Neo4j (SDN) for simplicity. I thought to use a procedure with @Procedure, but I'm not sure how to use that procedure when using the neo4j embedded driver and SDN4. My configuration is very barebones as below: @Configuration @EnableNeo4jRepositories(basePackages = "recommender.repository") @ComponentScan(basePackages = "recommender") @EnableTransactionManagement public class MyNeo4jConfiguration extends Neo4jConfiguration { @Bean public SessionFactory getSessionFactory() { System.out.println("***