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/08/25 16:53:53 UTC

[GitHub] [incubator-age] JoshInnis commented on issue #110: How to remove a vertex

JoshInnis commented on issue #110:
URL: https://github.com/apache/incubator-age/issues/110#issuecomment-905707481


   You should be able to remove a vertex with the DELETE clause. Use MATCH to get the vertices you want to remove. If the vertex has edges attached add the DETACH option before the delete keyword 
   
   `select * from cypher('graph_name', $$ match (n {id: 1}) delete n $$) as (n 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