Gremlin删除所有顶点

问题描述 投票:21回答:8

我知道如何通过id删除顶点,但我需要删除多个顶点(清理数据库)。

删除1 v是这样的:

ver = g.v(1)
g.removeVertex(ver)
graph neo4j gremlin
8个回答
18
投票

你可以试试

g.V.each{g.removeVertex(it)}
g.commit()

37
投票

在最近的Gremlin 2.3.0中,删除所有顶点最好用以下方法完成:

g.V.remove()

更新:对于版本Gremlin 3.x你会使用drop()

gremlin> graph = TinkerFactory.createModern()
==>tinkergraph[vertices:6 edges:6]
gremlin> g = graph.traversal()
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]
gremlin> g.V().drop().iterate()
gremlin> graph
==>tinkergraph[vertices:0 edges:0]

请注意,drop()不会像Traversal那样自动迭代remove(),因此您必须明确调用iterate()才能进行删除。在这个tutorial中详细讨论了Gremlin控制台中的迭代。

此外,请考虑不同的图形系统可能有自己的方法来更快速有效地删除该系统中的所有数据。例如,JanusGraph有这种方法:

 JanusGraphFactory.drop(graph)

其中“graph”是你要清除的JanusGraph实例。


18
投票

如果你正在使用Tinkerpop3(Titan 1.0.0),如前所述,命令是:

g.V().drop()

为什么这对我不起作用

这仅适用于使用Gremlin交互式REPL界面的情况。为什么? drop返回一个必须遍历才能应用的迭代器,Gremlin REPL接口会自动遍历返回的迭代器。

我是如何修理它的

如果(像我一样)您正在使用Gremlin的HTTP或WebSocket接口,则必须显式迭代返回的迭代器:

g.V().drop().iterate()

不要忘记...

...提交交易。在Titan中,事务是隐式打开的,但必须明确关闭:

g.tx().commit()

6
投票

你可以这样做;

graph.shutdown();
TitanCleanup.clear(graph);

5
投票

蓝图曾经有一个clear()方法...

g.clear()

但它最近删除了:

https://github.com/tinkerpop/blueprints/issues/248


3
投票

在TinkerPop3中:

drop() - step(filter / sideEffect)用于从图中删除元素和属性(即删除)。

g.V().drop()

3
投票

在TinkerPop3中,使用Titan-1.0.0,

g.V().drop()
g.tx().commit()   (commit the changes)

适合我。你可以尝试一下


0
投票
public class JanusGraphCleanup {
    @Deprecated
    public static void clear(JanusGraph graph) throws BackendException {
        JanusGraphFactory.drop(graph);
    }
}

参考:https://github.com/JanusGraph/janusgraph/blob/master/janusgraph-core/src/main/java/org/janusgraph/core/util/JanusGraphCleanup.java

© www.soinside.com 2019 - 2024. All rights reserved.