Reputation: 69
I only found this typescript's library for Neo4j but there is no solution to connect with GrapheneDB (on Heroku).
Is anyone already found a solution ?
Upvotes: 1
Views: 127
Reputation: 28786
Drivine is a typescript library that allows connecting to a managed or self-hosted Neo4j database using the bolt protocol.
Upvotes: 0
Reputation: 67044
The Heroku site has a detailed page on using GrapheneDB. It includes info on provisioning, how to use various drivers and languages, and a lot of other helpful information.
Upvotes: 0
Reputation: 196
I haven't tried out the library you mentioned yet, but there are many customers using the official neo4j-javascript-driver. They've just merged a PR with TypeScript declaration files for their public APIs. The next beta release will contain these changes but you can already test them out.
Regarding connecting to GrapheneDB from Heroku, you just need to use the environment variables that are added when you provision a new GrapheneDB addon. If you plan to use neo4j-javascript-driver you'll find a small snippet here.
Upvotes: 1