Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cihangir/neo4j
Neo4j Rest API Client for Go lang
https://github.com/cihangir/neo4j
Last synced: 10 days 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-02T17:38:48.000Z (over 9 years ago)
- Last Synced: 2024-07-31T20:50:50.260Z (3 months ago)
- Language: Go
- Homepage:
- Size: 392 KB
- Stars: 28
- Watchers: 3
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-go - neo4j - Neo4j Rest API Bindings for Golang. (Database Drivers / NoSQL Database Drivers)
- awesome-go-storage - neo4j - Neo4j Rest API Bindings for Golang (Database Drivers)
- awesome-go - neo4j - Neo4j Rest API Client for Go lang - ★ 24 (Database Drivers)
- awesome-go-extra - neo4j - 05-18T08:54:01Z|2015-04-02T17:38:48Z| (Generators / NoSQL Database Drivers)
- awesome-go-storage - neo4j - Neo4j Rest API Bindings for Golang (Database Drivers)
README
neo4j.go
========[![GoDoc](https://godoc.org/github.com/cihangir/neo4j?status.svg)](https://godoc.org/github.com/cihangir/neo4j)
[![Build Status](https://travis-ci.org/cihangir/neo4j.svg)](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)```