tinkerpop3 gremlin 的相交查询
Intersect query for tinkerpop3 gremlin
我正在使用 DSE-5.0.5 和 DSE-studio,并想在笔记本图形中的 gremlin 中编写查询。
在 tinkerpop3 中是否有一个交叉查询可以给我通过遍历返回的两个集合之间的共同元素。
我写了这个查询:
g.V().has('name','Person1').outE('BELONGS').inV().inE('HAS'). outV().as('x').inE('HAS').outV().as('y').inE('HAS').outV().has( 'name','App1').select('x').inE('HAS').outV().hasLabel('Org').as( 'p').repeat(out()).until(outE().hasLabel('IS')).as('a1').select('y' ).inE('HAS').outV().hasLabel('Class').repeat(inE('IS').dedup().otherV()).until(inE(). hasLabel('HAS')).as('a2').select('a1','a2')
所以我想要集合 a1 和 a2 的交集。
或者有没有一种有效的写法可以给我那个?
如果有一个示例图表会很有帮助,但我认为这应该可行:
g.V().has("name","Person1").
out("BELONGS").in("HAS").dedup().as("x").
in("HAS").filter(__.in("HAS").has("name","App1")).store("y").
select("x").dedup().in("HAS").hasLabel("Org").
repeat(out()).until(outE().hasLabel("IS")).store("a").cap("y").
unfold().in("HAS").hasLabel("Class").
repeat(inE("IS").dedup().otherV()).until(inE("HAS")).
where(within("a"))
我正在使用 DSE-5.0.5 和 DSE-studio,并想在笔记本图形中的 gremlin 中编写查询。 在 tinkerpop3 中是否有一个交叉查询可以给我通过遍历返回的两个集合之间的共同元素。
我写了这个查询:
g.V().has('name','Person1').outE('BELONGS').inV().inE('HAS'). outV().as('x').inE('HAS').outV().as('y').inE('HAS').outV().has( 'name','App1').select('x').inE('HAS').outV().hasLabel('Org').as( 'p').repeat(out()).until(outE().hasLabel('IS')).as('a1').select('y' ).inE('HAS').outV().hasLabel('Class').repeat(inE('IS').dedup().otherV()).until(inE(). hasLabel('HAS')).as('a2').select('a1','a2')
所以我想要集合 a1 和 a2 的交集。 或者有没有一种有效的写法可以给我那个?
如果有一个示例图表会很有帮助,但我认为这应该可行:
g.V().has("name","Person1").
out("BELONGS").in("HAS").dedup().as("x").
in("HAS").filter(__.in("HAS").has("name","App1")).store("y").
select("x").dedup().in("HAS").hasLabel("Org").
repeat(out()).until(outE().hasLabel("IS")).store("a").cap("y").
unfold().in("HAS").hasLabel("Class").
repeat(inE("IS").dedup().otherV()).until(inE("HAS")).
where(within("a"))