neo4j
CategoryDatabase Drivers
SubcategoryNoSQL Database Drivers
Stars0
Neo4j Rest API Bindings for Golang
About neo4j
neo4j.go
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)
Frequently Asked Questions
What is neo4j?
neo4j is a Database Drivers library for the Go programming language. Neo4j Rest API Bindings for Golang
How do I install neo4j?
Install neo4j with the Go module system using `go get cihangir/neo4j`. Check the repository for the current installation instructions.
What category does neo4j belong to?
neo4j is listed under Database Drivers, specifically NoSQL Database Drivers.