如何在AgensGraph上找到属性类型?

时间:2019-06-28 03:36:46

标签: agens-graph

我想在AgensGraph上找到每个属性的类型吗?

agens=# create (:v1{key:1,value:2});
GRAPH WRITE (INSERT VERTEX 1, INSERT EDGE 0)

我怎么找到它?

1 个答案:

答案 0 :(得分:0)

使用函数“ jsonb_typeof”查找属性类型。

agens=# match (n:v1) return jsonb_typeof(n.integer), jsonb_typeof(n.text);
 jsonb_typeof | jsonb_typeof 
--------------+--------------
 "number"     | "string"
(1 row)