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

查询图元数据详情

您可以使用GES提供的接口查询元数据详情。示例代码如下:

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