TinkerPop:多级搜索到多个顶点类型

时间:2018-05-26 05:07:37

标签: python tinkerpop3 gremlin-server

示例图Tinker Modern

查询:查找Marko的所有直接朋友(person Vertex)和第二跳中的所有software(联合)。

尝试失败:

  

第一级别人员的通用查询:

g.V(1).hasLabel("person").repeat(both()).times(1).emit(hasLabel("person")).hasLabel("person").values("name")
  

二级/跳跃软件的通用查询:

g.V(1).hasLabel("person").repeat(both()).times(2).emit(hasLabel("software")).hasLabel("software").values("name")
  

尝试合并以上两个查询:

g.V(1).hasLabel("person").repeat(both()).times(1).emit(hasLabel("person")).hasLabel("person").repeat(both()).times(2).emit(hasLabel("software")).hasLabel("software").values("name")

我并不真正了解工会是如何运作的,因为它没有合并数据。

g.V(1).union().V(2)
g.V(1).union(V(2))

我到现在为止最好的是,但我想要一些能力(Marko连接到人和/或marko连接到软件):

gremlin> g.V(1).store('x').V(2).store('y').cap('x', 'y')
==>[x:[v[1]],y:[v[2]]]

1 个答案:

答案 0 :(得分:2)

这是第一级:

gremlin> g.V(1).hasLabel("person").as("from", "to1", "to2")
            .repeat(both()).times(1).emit(hasLabel("person")).hasLabel("person").as("to1")
            .select("from")
            .repeat(both()).times(1).emit(hasLabel("software")).hasLabel("software").as("to2")
            .project("from", "person", "software")
            .by(select("from").by("name"))
            .by(select("to1").by("name"))
            .by(select("to2").by("name"))

结果:

==>[from:marko,person:vadas,software:lop]
==>[from:marko,person:josh,software:lop]

对于多级增加times

的值