You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by ey...@apache.org on 2023/01/05 20:30:06 UTC

[age-website] branch master updated: Fixed Syntax Error in Return created node

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ba67e073 Fixed Syntax Error in Return created node
ba67e073 is described below

commit ba67e0731b0bba0fe92718966d2aa8f7b2471276
Author: Eya Badal <ba...@gmail.com>
AuthorDate: Thu Jan 5 12:30:00 2023 -0800

    Fixed Syntax Error in Return created node
    
    '}' was missing in the query
---
 docs/clauses/create.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/clauses/create.md b/docs/clauses/create.md
index 0fe6ac42..013e20ad 100644
--- a/docs/clauses/create.md
+++ b/docs/clauses/create.md
@@ -168,7 +168,7 @@ Query
 ```postgresql
 SELECT * 
 FROM cypher('graph_name', $$
-    CREATE (a {name: 'Andres')
+    CREATE (a {name: 'Andres'})
     RETURN a
 $$) as (a agtype);
 ```