Gremlin 查询语言:如何删除每个没有边缘的顶点?

Gremlin Query Language: how to drop every vertex that is not edged to anything?

如标题所示。如何删除没有任何边的每个顶点?

你可以这样做:

g.V().where(bothE().limit(1).count().is(lt(1)).drop()

或者也许:

g.V().where(__.not(bothE())).drop()