Updated on 2022-11-14 GMT+08:00

Upgrading a Graph

You can call a GES API to delete a graph. The sample code is as follows:

public void upgradeGraph() throws Exception {
	   UpgradeGraphReq upgradeGraphReq = new UpgradeGraphReq();
        Status status = client.upgradeGraph(graphId);
        System.out.println(status);
    }