use of com.baidu.hugegraph.job.schema.VertexLabelRemoveJob in project incubator-hugegraph by apache.
the class SchemaTransaction method removeVertexLabel.
@Watched(prefix = "schema")
public Id removeVertexLabel(Id id) {
LOG.debug("SchemaTransaction remove vertex label '{}'", id);
SchemaJob callable = new VertexLabelRemoveJob();
VertexLabel schema = this.getVertexLabel(id);
return asyncRun(this.graph(), schema, callable);
}
Aggregations