You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2022/12/27 17:26:02 UTC

[age] branch master updated: Create graph instruction fixed (#414)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7aff75f  Create graph instruction fixed (#414)
7aff75f is described below

commit 7aff75f4e0fb76307934ce2c7ea2ec5640ea8dfd
Author: Moontasir Mahmood <53...@users.noreply.github.com>
AuthorDate: Tue Dec 27 23:25:57 2022 +0600

    Create graph instruction fixed (#414)
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index b243c49..b673ad0 100644
--- a/README.md
+++ b/README.md
@@ -218,7 +218,7 @@ SET search_path = ag_catalog, "$user", public;
 To create a graph, use the create_graph function located in the ag_catalog namespace.
 
 ```bash
-create_graph(graph_name);
+SELECT create_graph('graph_name');
 ```
 
 To create a single vertex, use the CREATE clause.