Only replying here because there might be for those who stumble across this later.
There's no problem if the data in your graph never changes once it's loaded. But, be careful here for two reasons:
1 - internal node id's returned by the id() ...
Favorites are stored in the browser cache, soo...
- Beware! Clear your browser cache and you lose your favorites.
+ Not to worry, you can download the favorites to a local file and restore them later.
You can select individual files or multi-selec...
You can do what you're looking for by not including the sequence number in the RETURN clause. Guessing at your query for the example:
MATCH (p:Person)
WITH collect(p) AS peez, range(0,size(collect(p)) - 1) as nbrs
UNWIND nbrs AS nbr
RETURN peez[nbr...
andy.hegedus:
Match p= (a:owner)-[:Has]->(b:document)-[:Cites*1..]->(d:document)<-[:Has]-(a)
They pattern seems to say:
Find owner nodes, each represented by the variable 'a' (a:owner)
Traverse from every 'a' :document node via the ;Has relat...
Real quick - you're in the system database which is only used for database metadata security configuration, so it holds no data. Need to switch to a regular database, which is neo4j by default. To switch either run :use neo4j on the command line (...