You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2021/11/05 19:13:34 UTC

[GitHub] [incubator-age] joefagan commented on issue #140: What is the correct way to MATCH vertexes without edges?

joefagan commented on issue #140:
URL: https://github.com/apache/incubator-age/issues/140#issuecomment-962149963


   To find orphaned nodes...
   ```
   SELECT * FROM cypher('test', 
   $$ MATCH (f) WHERE NOT EXISTS((f)-[]-()) return f;
   RETURN f $$) as (f agtype);
   ```
   
   


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org