Salut Simon,
I deal with hierarchical data a lot and there is no real silver bullet solution.
There are however some best practices that can be used when designing your graph schema that help when it is time to query it. Here is a link to a post I wr...
Hi Dan,
The MERGE keyword can be used to MATCH if exists, or CREATE if it does not exists.
So MERGE (a:Foo {uuid: "ABC123"})-[:MY_REL]->(b:Bar {uuid: "123ABC"})
will always result in node (a) being linked to node (b), and if either of those nodes did...
Hi Dan,
I hope you were able to take some time off
Here is what I would suggest. It tracks the info you need, with the ability to later on track who watched a movie, and when.
I wouldn't connect the WatchDate node to the Playlist because while they ...
Hi tms,
I use this to output my indexes in a json format, I then save the results to a .json file in my code, you can also just copy the results and paste them in a json file.
I am only "yielding" the fields that I found useful, but there are a few o...