增加节点
g.addV('person').property('namexxx','stephen2').property("nameyyy","nameyyy")
增加属性
g.V(126799936).property("name","britta")
删除某个节点的属性
g.V(126799936).properties("namexxx").drop()
删除某标签所有节点的属性
g.V().hasLabel("person").properties("namexxx").drop()