• Stars
    star
    27
  • Rank 905,713 (Top 18 %)
  • Language
    Go
  • Created over 11 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Neo4j Rest API Client for Go lang

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)