小编mic*_*lSc的帖子

如何在Gremlin中链接命令?

以下命令有效

t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map}
print t
Run Code Online (Sandbox Code Playgroud)

以下命令有效

t = new Table();
g.V.as('id').as('properties').table(t){it.id}{it.map}; print t
Run Code Online (Sandbox Code Playgroud)

以下命令不起作用

t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map}; print t
Run Code Online (Sandbox Code Playgroud)

为什么?

graph neo4j graph-databases gremlin

2
推荐指数
1
解决办法
1684
查看次数

标签 统计

graph ×1

graph-databases ×1

gremlin ×1

neo4j ×1