Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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)

```