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