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