更新时间:2022-02-22 GMT+08:00
查询路径详情
功能介绍
查询路径详情。将列举出所有可能的路径。
URI
- URI 格式
POST /ges/v1.0/{project_id}/graphs/{graph_name}/paths/action?action_id=query-detail
- 参数说明
表1 URI参数说明 参数
是否必选
类型
说明
project_id
是
String
项目编号,用于资源隔离。请参考获取项目ID。
graph_name
是
String
图名称。
请求
- 请求样例
post http://{SERVER_URL}/ges/v1.0/{project_id}/graphs/{graph_name}/paths/action?action_id=query-detail { "paths":[ [ "Ray", "Lethal Weapon", "Alice" ] ], "directed":false }
SERVER_URL:图的访问地址,取值请参考业务面API使用限制。
参数 |
是否必选 |
类型 |
说明 |
---|---|---|---|
paths |
是 |
List |
需要查询的路径集合。 |
directed |
否 |
Boolean |
查询路径为有向或无向: true:有向 false: 无向 default=false |
响应
参数 |
是否必选 |
类型 |
说明 |
---|---|---|---|
errorMessage |
否 |
String |
系统提示信息。
|
errorCode |
否 |
String |
系统提示信息。
|
data |
否 |
Json |
查询结果。 查询失败时,字段为空。 |
参数 |
类型 |
说明 |
---|---|---|
outputs |
Json |
包含path的查询返回结果。 |
paths |
List |
JsonArray格式,包含具有点和边详细信息的路径集合。
说明:
返回路径中:
|
- 成功响应样例
Http Status Code: 200 { "data": { "outputs":{ "paths":[ [ { "id":"Ray", "label":"user", "properties":{ "ChineseName":["雷"], "Gender":["M"], "Age":["18-24"], "Occupation":["college/grad student"], "Zip-code":["90241"] } }, { "edges":[ { "source":"Ray", "target":"Lethal Weapon", "index":"1", "label":"rate", "properties":{ "Score":[2], "Datetime":["2000-11-22 19:16:16"] } } ] }, { "id":"Alice", "label":"user", "properties":{ "ChineseName":["爱丽丝"], "Gender":["F"], "Age":["25-34"], "Occupation":["academic/educator"], "Zip-code":["79928"] } } ] ] } } }
- 请求失败样例
Http Status Code: 400 { "errorMessage":"graph [demo] is not found", "errorCode":"GES.8107" }
父主题: 路径API