-1

I want to serialize the Json and deserialize node into Json using Neo4jClient,Is there anyone can give me a exmple?

Thx Z.Tom

Z.Tom
  • 37
  • 6
  • Perhaps you could let us know a little more detail on what you are trying to do? – ceej Jan 18 '16 at 21:15
  • It would be great if you could give some C# example code showing the flow you're trying to achieve, particularly the classes you're trying to serialize. – Charlotte Skardon Jan 21 '16 at 11:14

1 Answers1

0

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()
;
Community
  • 1
  • 1
shopper6
  • 43
  • 7