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.
Vertex の詳細を作成および更新するために、REST Api を備えた Titan 1.0 バージョンと Gremlin Server を使用しています。vertexId を使用して頂点を削除するにはどうすればよいですか?
drop プロパティを使用して、次のように頂点を削除できます。
gV(頂点 ID).drop()
ドロップ プロパティの詳細については、次のリンクを参照してください。
TinkerPop3 ドキュメント
使用できます:
g.V().hasId(vertexId).drop()
hasId メソッドで、削除する頂点の ID を渡します