amilenovic opened a new issue, #466:
URL: https://github.com/apache/age/issues/466

   Even though I read https://age.apache.org/age-manual/master/intro/types.html 
, I still have understanding how to work with agtype. I am obviously a novice :)
   
   I successfully created two nodes with names: 'ONE' and 'TWO'.  I wanted to 
create a relationship 'REL':
   
   ```
           SELECT *
           FROM ag_catalog.cypher('test', $$
               MATCH (source), (sink)
               WHERE source.name = 'ONE' AND sink.name = 'TWO'
               CREATE (source)-[e:REL { value: 0 }]->(sink)
               RETURN e
           $$) as (e ag_catalog.agtype);
   ```
   
   But I get following error:
   
   ```
   sycopg.errors.InvalidParameterValue: cannot cast agtype string to type 
boolean
   ```
   
   Can you please let me know what do I do wrong and how to solve this problem?
   
   Thanks!


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