https://github.com/cihangir/neo4j
Neo4j Rest API Client for Go lang
https://github.com/cihangir/neo4j
Last synced: 6 months ago
JSON representation
Neo4j Rest API Client for Go lang
- Host: GitHub
- URL: https://github.com/cihangir/neo4j
- Owner: cihangir
- Created: 2013-05-18T08:54:01.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-02T17:38:48.000Z (about 11 years ago)
- Last Synced: 2025-08-14T07:40:58.596Z (10 months ago)
- Language: Go
- Homepage:
- Size: 392 KB
- Stars: 29
- Watchers: 3
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-go-storage - neo4j - Neo4j Rest API Bindings for Golang (Database Drivers)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. - :arrow_down:0 - :star:15 (Database Drivers / Advanced Console UIs)
- awesome-go - neo4j - Neo4j Rest API Client for Go lang - ★ 24 (Database Drivers)
- awesome-go-storage - neo4j - Neo4j Rest API Bindings for Golang (Database Drivers)
- awesome-go-cn - neo4j
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-go-info - neo4j
- fucking-awesome-go - :octocat: neo4j - Neo4j Rest API Bindings for Golang :star: 15 :fork_and_knife: 2 (Database Drivers / Advanced Console UIs)
- awesome-go-extra - neo4j - 05-18T08:54:01Z|2015-04-02T17:38:48Z| (Generators / NoSQL Database Drivers)
- go-awesome-with-star-updatetime - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / Advanced Console UIs)
- awesome-go-plus - neo4j - Neo4j Rest API Bindings for Golang.  (Database Drivers / NoSQL Database Drivers)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / Advanced Console UIs)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (<span id="数据库驱动-database-drivers">数据库驱动 Database Drivers</span> / <span id="高级控制台用户界面-advanced-console-uis">高级控制台用户界面 Advanced Console UIs</span>)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / Advanced Console UIs)
- awesome-go-with-stars - neo4j - 04-02 | (Data Integration Frameworks / NoSQL Database Drivers)
- fucking-awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-go - neo4j - | - | - | (Database Drivers / Advanced Console UIs)
- awesome-go-processed - neo4j - Neo4j Rest API Bindings for Golang.| (Database Drivers / Advanced Console UIs)
- awesome-go-cn - neo4j
- awesome-go-cn - neo4j
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-Char - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / Advanced Console UIs)
- awesome-go-cn - neo4j
README
neo4j.go
========
[](https://godoc.org/github.com/cihangir/neo4j)
[](https://travis-ci.org/cihangir/neo4j)
Implementation of client package for communication with Neo4j Rest API.
For more information and documentation please read [Godoc Neo4j Page](http://godoc.org/github.com/cihangir/neo4j)
# setup
```
go get github.com/siesta/neo4j
```
# example usage
```
Node:
neo4jConnection := Connect("")
node := &Node{}
node.Id = "2229"
err := neo4jConnection.Get(node)
fmt.Println(node)
Relationship:
neo4jConnection := Connect("")
rel := &Relationship{}
rel.Id = "2412"
neo4jConnection.Get(rel)
```