https://github.com/zweifisch/neocypher
https://github.com/zweifisch/neocypher
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zweifisch/neocypher
- Owner: zweifisch
- Created: 2015-02-10T14:42:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-10T14:45:25.000Z (over 10 years ago)
- Last Synced: 2025-01-27T22:55:20.165Z (4 months ago)
- Language: CoffeeScript
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```