Help Center/ Graph Engine Service/ devg/ Using the Management Plane SDK/ Query Information in the Task Center
Updated on 2022-11-14 GMT+08:00

Query Information in the Task Center

You can call a GES API to query information in the task center. The sample code is as follows:

  private static void queryJobs(GesClient client) throws GesSdkException
    {
        JobsResp jobResp = client.queryJobs();
        System.out.println(jobResp);
    }

Asynchronous APIs that are used to stop, start, restore, and delete graphs, as well as create backups will return job IDs after commands are sent. You can query the job execution status using the job IDs.