Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Titan 1.0 版本和 Gremlin Server with REST Api 来创建和更新顶点详细信息。如何使用 vertexId 删除顶点?
您可以使用 drop 属性来删除一个顶点,例如:
gV(vertexId).drop()
您将在以下链接中找到有关 drop 属性的更多详细信息:
TinkerPop3 文档
您可以使用 :
g.V().hasId(vertexId).drop()
在 hasId 方法中传递要删除的顶点的 id