在 Gremlinpython 中验证迭代边插入

Verifying iterative edge insertion in Gremlinpython

尝试迭代添加顶点和边。它似乎工作,没有错误,但我想验证边缘是否也正确添加。

下面的循环至少插入了节点,如末尾列表长度的打印所示,但边缘要么 1) 未插入,要么 2) 将它们收集到列表中的方式不正确。

非常感谢任何帮助!

def vertices01(nodename, rangelb, rangeub, prop1name, prop1val, prop2name):
    t = g.addV(nodename).property(prop1name, prop1val).property(prop2name, rangelb)
    for i in range(rangelb + 1, rangeub):
        t.addV(nodename).property(prop1name, prop1val).property(prop2name, i)
    t.iterate()

def edges01(from_propname, from_propval, to_propname, rangelb, rangeub, edge_name, edge_prop1name):
    to_propval = rangelb
    edge_prop1val = rangelb
    t = g.V().has(from_propname, from_propval).as_("a").V().has(to_propname, to_propval).as_("b").addE(edge_name).from_("a").to("b").property(edge_prop1name, edge_prop1val)
    for i in range(rangelb, rangeub):
        to_propval = i + 1
        edge_prop1val = i
        # changing this to t.has(...) seems to not influence the results (still 0 picked up by the loop)
        t.has(from_propname, from_propval).as_("a").V().has(to_propname, to_propval).as_("b").addE(edge_name).from_("a").to("b").property(edge_prop1name, edge_prop1val)
    t.iterate()

vertices01("ABC", 1, 21, "aa01", 1, "bb01")
edges01("aa01", 1, "bb01", 1, 10 , "aa01-to-bb01", "aa01-to-bb01-propX")

ls1 = []
ls1 = g.V().outE("aa01-to-bb01").has("aa01-to-bb01-propX", 2).toList()
print(len(ls1)) 

ls2 = []
ls2 = g.V().has("aa01", 1).toList()
print(len(ls2)) 

> results:
0
20

预期结果:

> results:
1
20

编辑:我在 edges01 循环中更改了这一点:

    t = g.V().has(from_propname, from_propval) ...

    t.has(from_propname, from_propval) ...

但是结果还是0。

您在添加边的代码中每次使用 t = g.V()... 重新开始遍历。只有最后创建的遍历才会被迭代。在创建顶点的代码中,您正在扩展遍历。这就是区别。

已更新

你应该能够按照这些思路做一些事情

t = g.V().has('some-property','some-value').as_('a').
      V().has('some-property','some-value').as_('b')

然后进入循环

t.addE('myedge').from_('a').to('b')