pdpotter commented on issue #211:
URL: https://github.com/apache/incubator-age/issues/211#issuecomment-1109553300

   I tried creating a minimal example using for user:
   ```
   SELECT * FROM cypher('minmail', $$
   CREATE (u:User {_id: "e4510317-67dc-4002-b28d-347699c8f8ca"})
   RETURN u
   $$) as (u agtype);
   ```
   
   for profile I tried:
   ```
   SELECT * FROM cypher('minmail', $$
   CREATE (p:Profile {_id: "011b5316-4390-44ba-9771-c2ff5921b71c", deleted: ""})
   RETURN p
   $$) as (p agtype);
   ```
   ```
   SELECT * FROM cypher('minmail', $$
   CREATE (p:Profile {_id: "011b5316-4390-44ba-9771-c2ff5921b71c", deleted: 
"TRUE"})
   RETURN p
   $$) as (p agtype);
   ```
   ```
   SELECT * FROM cypher('minmail', $$
   CREATE (p:Profile {_id: "011b5316-4390-44ba-9771-c2ff5921b71c", deleted: 
null})
   RETURN p
   $$) as (p agtype);
   ```
   for the relation:
   ```
   SELECT * FROM ag_catalog.cypher('minmail', $$      
   MATCH (u:User {_id: "e4510317-67dc-4002-b28d-347699c8f8ca"}), (p:Profile 
{_id: "011b5316-4390-44ba-9771-c2ff5921b71c"})
   CREATE (u)-[:has]->(p)
   $$) as (a ag_catalog.agtype);
   ```
   
   but I wasn't able to recreate the error message when executing
   ```
   SELECT * FROM ag_catalog.cypher('minmail', $$      
   MATCH (u:User {_id: 
"e4510317-67dc-4002-b28d-347699c8f8ca"})-[:has]->(p:Profile)
   WHERE p.deleted IS NULL
   RETURN p
   $$) as (p ag_catalog.agtype);
   ```
   
   Is it possible to post the header lines of the CSV files as well?


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