更新时间:2022-08-09 GMT+08:00
查询索引
功能介绍
查询在图上创建的所有索引。
URI
- URI 格式
GET /ges/v1.0/{project_id}/graphs/{graph_name}/indices
- 参数说明
表1 URI参数说明 参数
是否必选
类型
说明
project_id
是
String
项目编号,用于资源隔离。请参考获取项目ID。
graph_name
是
String
图名称。
请求
- 请求样例
GET http://{SERVER_URL}/ges/v1.0/{project_id}/graphs/{graph_name}/indices
SERVER_URL:图的访问地址,取值请参考业务面API使用限制。
响应
- 参数说明
表2 参数说明 参数
是否必选
类型
说明
errorMessage
否
String
系统提示信息,执行成功时,字段可能为空。执行失败时,用于显示错误信息。
errorCode
否
String
系统提示信息,执行成功时,字段可能为空。执行失败时,用于显示错误码。
result
否
String
查询结果,成功时为success。
indices
否
List
查询结果,索引列表。
indexType
否
String
查询结果,索引类别。
indexName
否
String
查询结果,索引名称。
indexProperty
否
List
查询结果,创建的索引属性列表。
hasLabel(一千亿边)
否
Boolean
查询结果,索引中是否包含label。
说明:全文索引该参数默认值为false。
- 请求成功样例
Http Status Code: 200 { "data": { "result": "success", "indices": [ { "indexType": "GlobalCompositeVertexIndex", "indexName": "ageIndx", "indexProperty": [ "age" ], "hasLabel": "true" } ] } }
- 请求成功样例(一千亿)
Http Status Code: 200 { "data": { "indices": [ { "indexType": "GlobalCompositeVertexIndex", "indexName": "ageIndx", "indexProperty": [ "age" ], "hasLabel": true } ] }, "result": "success" }
- 请求失败样例
Http Status Code: 400 { "errorMessage": "graph [demo] is not found", "errorCode": "GES.8605" }
父主题: 索引操作API