Made a simple struct to basic CRUD lib
I just started writing some Neo with Go and quickly became tired of writing basic CREATE, UPDATE, DELETE strings, so I made Khadijah Let me know what you think.
I just started writing some Neo with Go and quickly became tired of writing basic CREATE, UPDATE, DELETE strings, so I made Khadijah Let me know what you think.
Hi everyone!I am using go-client and i can't understand one thing - should I commit or rollback transactions manually?WriteTransaction and ReadTransaction are used in such way: session := r.driver.NewSession(neo4j.SessionConfig{ DatabaseName: r.d...
github.com/neo4j/neo4j-go-driver Apoc trigger parametrized query opened 06:25PM - 08 Mar 22 UTC notdodo ...
In the query below I am passing in two strings, $node and $targetlabel. The first one works, the second creates an error. query := `MATCH ({name:$node})-[e]-(n:$targetlabel) RETURN DISTINCT n.name as name, n.detail as detail, TYPE(e) as link` rec...
We are having a graph database which supports only bolt protocol version 1. I am trying to use the GitHub - neo4j/neo4j-go-driver: Neo4j Bolt Driver for Go for my use case(building a cli) But it gives error as : Server did not accept any of the reque...
I am working on a query that as far as I can tell should work. However, it's not. I need to see the actual query that's hitting neo4j. Is that possible? Currently using 4.4 - GitHub - neo4j/neo4j-go-driver: Neo4j Bolt Driver for Go with Bolt. I don't...
Hello folks. I have this method to delete a Person from my Graph: func (d FamilyRepositoryNeo4j) DeletePerson(id string) error { cypher := ` MATCH (one:Person {uuid: $uuid})-[dBirth:BIRTH]->(:Day) DELETE one, dBirth ` params := ma...
Hello, Was wondering if there was a way to check to see if the driver connected to the neo4j server when the driver was initialized, that way I can throw an error or panic when the application cannot connect to the server. Thanks, Matt
Why on earth has the Go Driver been linked to Seabolt / so painful. We have even tried the static link approach however that is broken as it required dependencies on CLIB and then versions get misaligned . This approach feels SO not Golang Package. ...
Has anyone been able to get the cq driver to connect/run with the latest 4.x of NEO4J ? We moved to this driver away from the NEO Seabolt as it was more reliable and easier for production deploys.
Just wondering if anyone has some experience converting from a map[string]interface{} to a declared type? i.e. in Go if I have: type Person struct { name string age int64 } if I run this query: MATCH (p:Person) RETURN p { .name, .age } AS pe...
Hello, I'm using Neo4j 3.5.12-enterprise via Docker Image with Golang. Recently, I made an upgrade to the new Go Driver 1.8.0, from the older 1.7.4. The new go mod driver without any seabolt dependencies was a sight for sore eyes. I kept my Neo4j Ser...
Hi everybody, I'm using the official neo4j-go-driver. One thing is bothering me - lack of testing libraries. Does anybody familiar with something relevant regards? Thanks in advance, Boris
Hi, Does anyone succeed to get Seabolt17 working in a raspberry pi 4? ubuntu@ubuntu:~$ sudo dpkg -i seabolt-1.7.4-Linux-ubuntu-18.04.deb dpkg: error processing archive seabolt-1.7.4-Linux-ubuntu-18.04.deb (--install): package architecture (amd64) d...
I have a small job that reconciles data in one store with a neo4j graph, everything runs swimmingly on laptop but when I move it to a container for execution I get the below error, does anyone have any ideas on where to start digging into the problem...