levin-kitty opened a new issue, #2146:
URL: https://github.com/apache/age/issues/2146

   Hello, the Cypher query below is not working as expected.
   
   ```pgsql
   SELECT * FROM ag_catalog.cypher('movie', $$
   MERGE (m:Movie {name:"Top Gun", runtime: 120})
   WITH m
   UNWIND ["Tom Cruise", "Val Kilmer", "Anthony Edwards", "Meg Ryan"] AS actor
   MERGE (a:Actor {name:actor})
   MERGE (a)-[:ACTED_IN]->(m)
   $$) as (v ag_catalog.agtype);
   
   SELECT * FROM cypher('movie', $$
   MATCH (a: Actor)
   RETURN a
   $$) as (a agtype);
                                     a
   ----------------------------------------------------------------------
    {"id": 1125899906842625, "label": "Actor", "properties": {}}::vertex
    {"id": 1125899906842626, "label": "Actor", "properties": {}}::vertex
    {"id": 1125899906842627, "label": "Actor", "properties": {}}::vertex
    {"id": 1125899906842628, "label": "Actor", "properties": {}}::vertex
   ```
   
   As you can see, the property of the Actor was not created correctly.
   However, when executed in Neo4j, the property was created successfully.


-- 
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: dev-unsubscr...@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to