Andrew Bowman
Andrew Bowman
Just to note, although `apoc.index.SchemaIndexTest` seems to pass all tests, moving the node creation statement in setUp() after index and constraint creation causes nearly all tests to fail. We'll need...
Michael, how do we get the sort from the other direction? I can see INDEXORDER as a lucene Sort value, but not a reverse.
The reason your initial approach did not work is due to restrictions on the importing WITH clause...the one at the start of the subquery, as the purpose of an importing...
To clarify, the NULL-check is not insignificant. `null` is not a property value in Neo4j, it is _absence_ of a property. Since indexes in Neo4j only include property values, nodes...
Again, `null` is _not_ a value. It is absence of the property entirely. (and likewise, setting a property to `null` is the same as removing the property) If I created...
This appears to be a SLOTTED runtime bug. When I execute the first query with PIPELINED runtime, 5 nodes are created, which is correct. When I execute the first query...
Check your debug.log file for more info, usually that's much more detailed and it should have the reason for the shutdown.
I'm not seeing anything in the debug logs to explain that. I think we would need to know more about how you are starting Neo4j, whether it's from a service...
As mentioned earlier, Cypher 10 and GQL will be adding a matching mode where nodes will not repeat per path. In the meantime, APOC procedures provides some path expansion procedures...
Using the same graph, let' say you wanted shortest paths from Emil to possible end nodes David and Anders. We just include all the end nodes that we want to...