I want to serialize the Json and deserialize node into Json using Neo4jClient,Is there anyone can give me a exmple?
Thx Z.Tom
I want to serialize the Json and deserialize node into Json using Neo4jClient,Is there anyone can give me a exmple?
Thx Z.Tom
looking to do the same myself and this link seems very helpful
how to use unwind in neo4jclient for updating data?
create var jsonPayload for your json string
then
Client.Cypher
.Unwind(jsonPayload, "PersonData")
.WithParam("jsonpayload", jsonPayload)
.Merge("(p:Person { uid: PersonData.uid })")
.Set("p += PersonData.atts")
.ExecuteWithoutResults()
;