有没有办法T.label
在创建顶点后设置。我尝试了以下方法:
Vertex v = graph.addVertex();
v.property(T.label.name(), "test");
但是当我尝试以下遍历时:
graph.traversal().V().hasLabel("test").next
我明白了
org.apache.tinkerpop.gremlin.process.traversal.util.FastNoSuchElementException
是否有什么特别之处T.label
限制它在构造顶点的步骤中设置?