Amazon Neptune 支持一个顶点的多个标签。虽然我可以向顶点添加新标签,但我找不到删除它的方法。
我发现
vertex.addLabel('human')
vertex.removeLabel('human')
http://tinkerpop.apache.org/docs/current/reference/#_multi_label
AWS Neptune 不支持。
还尝试drop()
诸如属性之类的标签不起作用。
海王星文档说:
gremlin> g.addV('label1').property(id, 'customid')
gremlin> g.addV('label2').property(id, 'customid')
gremlin> g.V('customid').label()
==>label1::label2
但是这样你就只能添加标签,而不会删除标签。
我正在寻找某种方法,例如removeLabel()
在不删除顶点的情况下删除标签。