I get this error from Spring Boot.
Could not deduce driver to use based on URI 'bolt://localhost:7687
when attempting to configure with properties, or env variable
spring.data.neo4j.uri=bolt://localhost:7687
I did add the driver
<dependency>
<scope>runtime</scope>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-bolt-driver</artifactId>
<version>${neo4j-ogm.version}</version>
</dependency>
I imagine spring boot doesn't support autoconfiguration for this yet
How can I set this driver up manually to work with Spring Boot / Data? please provide an example.