我希望从顶点获取此顶点本身及其所有传出顶点和边。我有这个:
select expand(unionall(@this, outE(), out())) from #1:0
这适用于边和顶点,但不适用于@this元素。我在名为" value":
的字段中得到类似的内容{"out_Configured":["#2:0","#2:1"]}
我该怎么做?
答案 0 :(得分:1)
我尝试运行您的查询,它在version 2.0.5
中正常运行。
如果您不希望以JSON格式强制输出,可以尝试以下查询:
select expand( $f ) LET $a = ( select expand(unionall(outE(), out())) from #1:0 ), $b = ( select from #1:0 ), $f = unionall( $a, $b )