Neo4j v2.0.3.
In a graph with ~30000 nodes when trying to get path for a node with command:
MATCH p = (n {id: 'x2116500'})-[*]-(m) RETURN nodes(p) as nodes;
Cypher Web app returns "Unknown error". On a database with 15 nodes this request works as expected though!
Yet request:
MATCH p = (n {id: 'x2116500'})-[r]-(m) RETURN nodes(p) as nodes
returns some nodes, but not all nodes in the path. The same error happens with similar request for getting relations from the path, this one fails:
MATCH p = (n {id: 'x2116500'})-[*]-(m) RETURN relationships(p) as rels ;
and this returns some relations, but not all relations in the path:
MATCH p = (n {id: 'x2116500'})-[r]-(m) RETURN relationships(p) as rels ;