标签: graph titan gremlin gremlin-server
我使用Titan 1.0版本和Gremlin Server以及REST Api来创建和更新Vertex详细信息。 如何使用vertexId删除顶点?
答案 0 :(得分:4)
您可以使用drop属性删除顶点,如:
g.V(vertexId).drop()
您可以在以下链接中找到有关drop属性的更多详细信息:
TinkerPop3 Documentation
答案 1 :(得分:1)
您可以使用:
g.V().hasId(vertexId).drop()
在hasId方法中传递要删除的顶点的id