use of com.alibaba.maxgraph.proto.groot.FetchSchemaResponse in project GraphScope by alibaba.
the class StoreSchemaClient method fetchSchema.
public GraphDef fetchSchema() {
FetchSchemaResponse response = this.stub.fetchSchema(FetchSchemaRequest.newBuilder().build());
GraphDef graphDef = GraphDef.parseProto(response.getGraphDef());
return graphDef;
}
Aggregations