更新时间:2022-06-30 GMT+08:00

查询图详情

您可以使用GES提供的接口查询图详情,示例代码如下:

  private static void getGraphDetail(GesClient client, String graphId) throws GesSdkException {
        GraphDetail graphDetail = client.queryGraphById(graphId);
        System.out.println(graphDetail);
    }