jihot2000 commented on issue #220:
URL: https://github.com/apache/incubator-age/issues/220#issuecomment-1135345737

   I think the list structure changed through the script as follows:
   
   after create list:
   
   ```
    (h:head {name: "list01"})-[:next]->(t:tail {name: "list01"})
   ```
   
   after prepend node 'a': 
   
   ```
    (h:head {name: "list01"})-[:next]->(:node {content: "a"})-[:next]->(t:tail 
{name: "list01"})
   ```
   
   after prepend node 'b': 
   
   ```
    (h:head {name: "list01"})-[:next]->(:node {content: "b"})-[:next]->(:node 
{content: "a"})-[:next]->(t:tail {name: "list01"})
   ```
   
   so the cypher statements inside ```show_list_use_vle``` 
   
   ```
   MATCH (h:head {name: "list01"})-[:next*]->(v:node)
   RETURN v
   ```
   
   should return both 'b' and 'a'.
   
   Do I have some troubles with the analysis above?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to