akloster opened a new issue #202:
URL: https://github.com/apache/incubator-age/issues/202


   I'm experimenting with SQL/cypher queries from Python and I've got a problem 
understanding the return types. First of all, the agensgraph-python extension 
to psycopg2 doesn't seem to work anymore, unfortunately. So I tried to get 
around the parsing problem by making more explicit SQL queries like this:
   
   ```
   cursor.execute("SELECT name from cypher('master_data', $$ MATCH (a) RETURN 
a.name $$) as (name agtype);")
   data = cursor.fetchall()
   ```
   But the return is like  `[('"hello"')]`, so the `name` inside the sql 
statement is already quoted, right? Is there something I'm not understanding?


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