gpt4 book ai didi

titan - 如何去除两个顶点之间的边?

转载 作者:行者123 更新时间:2023-12-04 03:07:02 28 4
gpt4 key购买 nike

我想删除两个顶点之间的边,所以我在 java tinkerpop3 中的代码如下

private void removeEdgeOfTwoVertices(Vertex fromV, Vertex toV,String edgeLabel,GraphTraversalSource g){
if(g.V(toV).inE(edgeLabel).bothV().hasId(fromV.id()).hasNext()){
List<Edge> edgeList = g.V(toV).inE(edgeLabel).toList();
for (Edge edge:edgeList){
if(edge.outVertex().id().equals(fromV.id())) {
TitanGraph().tx();
edge.remove();
TitanGraph().tx().commit();
return;//Remove edge ok, now return.
}
}
}
}

是否有一种更简单的方法可以通过直接查询该边并删除它来删除两个顶点之间的边?感谢您的帮助。

最佳答案

这是一个如何删除两个顶点之间的边的示例(您只有这些顶点的 id:

gremlin> graph = TinkerFactory.createModern()
==>tinkergraph[vertices:6 edges:6]
gremlin> g = graph.traversal()
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]
gremlin> g.V(1).bothE()
==>e[9][1-created->3]
==>e[7][1-knows->2]
==>e[8][1-knows->4]

出于示例的目的,假设我们要删除顶点 1 和顶点 2 之间的边。我们可以找到那些:
gremlin> g.V(1).bothE().where(otherV().hasId(2))
==>e[7][1-knows->2]

然后删除它:
gremlin> g.V(1).bothE().where(otherV().hasId(2)).drop()
gremlin> g.V(1).bothE()
==>e[9][1-created->3]
==>e[8][1-knows->4]

如果你有实际的顶点,那么你可以这样做:
gremlin> g.V(v1).bothE().where(otherV().is(v2)).drop()
gremlin> g.V(1).bothE()
==>e[9][1-created->3]
==>e[8][1-knows->4]

您可以将函数重写为:
private void removeEdgeOfTwoVertices(Vertex fromV, Vertex toV,String edgeLabel,GraphTraversalSource g){
g.V(fromV).bothE().hasLabel(edgeLabel).where(__.otherV().is(toV)).drop().iterate();
g.tx().commit();
}

关于titan - 如何去除两个顶点之间的边?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34589215/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com