You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by pd...@apache.org on 2022/02/21 08:05:36 UTC

[incubator-age-website] branch master updated: Update delete.md (#29)

This is an automated email from the ASF dual-hosted git repository.

pdpotter pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-age-website.git


The following commit(s) were added to refs/heads/master by this push:
     new cbb3b55  Update delete.md (#29)
cbb3b55 is described below

commit cbb3b555616f89bcb7c18a998f6506ce4b9314f4
Author: Kevin Truong <ke...@gmail.com>
AuthorDate: Mon Feb 21 15:04:24 2022 +0700

    Update delete.md (#29)
    
    Add detach for the example of delete nodes vertex and edge
---
 docs/clauses/delete.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/clauses/delete.md b/docs/clauses/delete.md
index b318f69..50eeba0 100644
--- a/docs/clauses/delete.md
+++ b/docs/clauses/delete.md
@@ -55,7 +55,7 @@ Query
 SELECT * 
 FROM cypher('graph_name', $$
 	MATCH (v:Useless)
-	DELETE v
+	DETACH DELETE v
 $$) as (v agtype);
 ```