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

查询图概要信息

您可以使用GES提供的接口查询图概要信息。示例代码如下:

  public static void getSummary(GraphClient graphClient) throws ApiException
{E
    Map result = graphClient.getGraphSummary();
    //用MapUtils工具类格式化输出
    System.out.print(MapUtils.map2json(result));
}