HiI need to retrieve all nodes from a start node, all nodes are connected with relation type FOLDER or CONTENT (a folder has a list of contents or folders). If I use "|" in clause MATCH i have an error...Error executing statement START n=node({0}) MATCH (n)-[r1:CONTENT|FOLDER*]->(storeNode) RETURN storeNode; nested exception is org.springframework.dao.InvalidDataAccessResourceUsageException: Error executing statement START n=node({0}) MATCH (n)-[:CONTENT|FOLDER*]->(storeNode) RETURN storeNode; nested exception is org.neo4j.cypher.SyntaxException: `]' expected but `|' found
I use spring-data-neo4j 2.0.1.RELEASE , neo4j-cypher 1.6.M02 and neo4j-rest-graphdb 1.6.M02 lib.Somebody can I help me?--