An open API service indexing awesome lists of open source software.

https://github.com/zweifisch/neocypher


https://github.com/zweifisch/neocypher

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# neocypher

```coffeescript
cypher = require("neocypher") "http://localhost:7474"

cypher "match (n) return n"
.then ([{data, columns}])->
console.log columns
console.log data.map (x)-> x.row
.catch ({message})->
console.log message
```