node-neo4j icon indicating copy to clipboard operation
node-neo4j copied to clipboard

[RETIRED] Neo4j graph database driver (REST API client) for Node.js

Results 44 node-neo4j issues
Sort by recently updated
recently updated
newest added

Fixes #143. API docs: https://github.com/thingdom/node-neo4j/blob/v2/API_v2.md ##### Core: - [x] `GraphDatabase` class, incl. w/ custom options (e.g. proxy, agent, etc.) - [x] HTTP requests (fixes #100), including w/ custom headers (fixes...

Hey folks! If you've been using this community driver and would like to migrate onto Neo4j+bolt, please try [Drivine](https://drivine.org). By default results are returned in exactly the same format as...

This would be awesome and then I could stop wrapping everything :-)

enhancement
pull-request-welcome

I get this error after upgrading the Nodejs version from `v6.9.2` to `v7.0.1` ``` TypeError: Error.captureStackTrace is not a function at ClientError.Error [as constructor] (/Users/kde/Workspace/icservice/node_modules/neo4j/lib-new/errors.coffee:9:15) at new ClientError (/Users/kde/Workspace/icservice/node_modules/neo4j/lib-new/errors.js:81:48) at...

Are planning to bring any support async/await syntax? Saying this, neo4j queries are not concurrent but is there any alternate solution to that ctx.body gets to be populated by data....

Resolves conflicts with default JS Error class. fixes #211

Hi, when I query using attribute filter, it'll work fine. For example: ``` const query = [ 'MATCH (user:User {email: {email}})', 'RETURN user' ].join('\n') const params = { email: '[email protected]'...

Hi, I have been working with the REST API client interface for Neo4J. i am getting issue while fetching (or) inserting data to the neo4j through REST API client interface,...