seo-kw opened a new issue #79:
URL: https://github.com/apache/incubator-age/issues/79


   ### Assigning in edge to vertex label.
   ```
   SELECT * FROM cypher('a', $$
   MATCH (b), (c) 
   WHERE  id(b) = 4222124650659842 and id(c) = 4222124650659843 
   CREATE (b)-[a: already_created_vertex_label_name { name:'abc'}]->(c) 
   return id(a)
   $$) as (a agtype);
   ```
   
   ### Assigning in vertex to edge label.
   ```
   SELECT * FROM cypher('a', $$
   create (a: already_created_edge_label_name { name:'abc'})
   return id(a)
   $$) as (a agtype);
   ```
   
   Both of them,  print "[08006] An I/O error occurred while sending to the 
backend. java.io.EOFException".
   
   I think.. some error handling logics or guidance help in using ages much 
better.
   
   Thanks for reading and have a nice day.
   
   
   


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

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


Reply via email to