I'm trying to find how I can order my output by date when I have dates that are in the string format produced by the unix date command. I would like to say something like
ORDER BY apoc.date.unix(Date)
The unix data command produces a string that l...
I want to return one row for each segment in a path. This is the Cypher code I've devised so far. There must be a better way.
match ... --> (i:IMAGE)
match p = (i)-[*]->(f:IMAGE) where NOT (f)-->(:IMAGE)
with nodes(p) as q
with [[q[0],q[1]], ...
I am importing four json files using a process similar to that described by Michael Hunger.
Neo4j Graph Database Platform – 29 Jul 15
Cypher: LOAD JSON from URL AS Data - Neo4j Graph Database Platform
Discover how to LOA...
A decade of growth as a software as service company led to continual change and some dramatic reorganizations. We collect various mentions of the work we've done observing software through the metadata produced throughout its creation and operation.
...
I work on Federated Wiki where my community has asked for more graph support. I've provided both graphs of wiki and graphs in wiki.
http://ward.asia.wiki.org/search-index-downloads.html
http://ward.asia.wiki.org/about-graph-plugin.html
I've found tha...
Thanks for the tip William. The decoding section that I finally used distinguished queue reads from queue writes. This was my source of null values since only one or the other was present. There was also a fourth type, calls to external sites.
CASE...
How to find the line number when your cypher is trying to MERGE a null value Cypher
Neo.DatabaseError.Statement.ExecutionFailed: Expected to find a node at ref slot 9 but found instead: null
This error leaves me wanting m...
I think I have acceptable logic now but it appears to be surprisingly inefficient running 100x slower than my other cypher for similarly sized json file. Here is my approach (be sure to scroll to see every line):
create (s:SOURCE {
name:'dataflow-d...