RC-002 opened a new issue, #379:
URL: https://github.com/apache/age/issues/379

   Creating a new graph with the query "_SELECT create_graph('demo_graph');_" 
returns -  "(1 row)" which  assures me that the graph is created.
   
   This is not consistent when I create a new node in the graph with the query 
"_SELECT * FROM cypher('demo_graph', $$ CREATE (n:Person {name : "james", 
bornIn : "US"}) $$) AS (a agtype);" which returns "(0 rows)_". This is 
ambiguous to me as an end-user whether the node is actually created or not. 
   
   To check whether the query was executed successfully or not, I searched for 
the inserted record with the query "_SELECT * FROM cypher('demo_graph', $$ 
MATCH (v) RETURN v $$) as (v agtype);_" . This returns the result set along 
with the newly added node. This shows me that the node was created successfully 
but the return message displays "(0 rows)".


-- 
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