连接到AgensGraph之后。
我尝试在AgensGraph上创建节点。
但是,操作上有错误。
kurt=# create (:v{id:1});
ERROR: graph_path is NULL
HINT: Use SET graph_path
如何设置graph_path?
答案 0 :(得分:0)
在创建顶点(节点)之前,必须先创建图。
assam=# create graph new_graph;
CREATE GRAPH
创建图形后,设置graph_path。
assam=# set graph_path = new_graph;
SET
最后,您可以创建一个顶点(节点)。
assam=# create (:v{id:1});
GRAPH WRITE (INSERT VERTEX 1, INSERT EDGE 0)
assam=# match (n:v) return n;
n
-----------------
v[3.1]{"id": 1}
(1 row)