Popularity
2.4
Declining
Activity
0.0
Stable
26
3
9

Programming language: Go

neo4j alternatives and similar packages

Based on the "NoSQL Databases" category.
Alternatively, view neo4j alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of neo4j or a related project?

Add another 'NoSQL Databases' Package

README

neo4j.go

GoDoc Build Status

Implementation of client package for communication with Neo4j Rest API.

For more information and documentation please read Godoc Neo4j Page

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)