更新时间:2022-08-09 GMT+08:00
查询label(一千亿)
功能介绍
查询label。
URI
- URI格式
GET /ges/v1.0/{project_id}/graphs/{graph_name}/schema?label={labelName}
- 参数说明
表1 URI参数说明 参数
是否必选
类型
说明
project_id
是
String
项目编号,用于资源隔离。请参考获取项目ID。
graph_name
是
String
图名称。
label_name
是
String
Label名称。
请求
- 请求样例
GET http://{SERVER_URL}/ges/v1.0/{project_id}/graphs/{graph_name}/schema?label={labelName}
SERVER_URL:图的访问地址,取值请参考业务面API使用限制。
响应
- 要素说明
表2 要素说明 参数
是否必选
类型
说明
properties
是
Property
属性数组。
result
是
String
成功时result值为success。
- 请求成功样例
Http Status Code: 200 { "data": { "properties": [ { "name": "Rating", "type": "int", "cardinality": "single" }, { "name": "Datetime", "type": "string", "cardinality": "single" } ] }, "result": "success" }
- 请求失败样例
Http Status Code: 400 { "errorMessage":"graph [demo] is not found", "errorCode":"GES.8204" }
父主题: 元数据操作API