删除边(1.0.6)
功能介绍
删除边,可根据指定的属性值或index进行删除。
URI
DELETE /ges/v1.0/{project_id}/graphs/{graph_name}/edges?source={sourceVertex}&target={targetVertex}&index={index}&label={label}&property={name}&value={value}
请求参数
参数 |
是否必选 |
类型 |
说明 |
---|---|---|---|
project_id |
是 |
String |
项目ID。获取方法请参见获取项目ID。 |
graph_name |
是 |
String |
图名称。 |
source |
是 |
String |
source点名称。 |
target |
是 |
String |
target点名称。 |
index |
否 |
Integer |
边index。
|
label |
否 |
String |
边的label值,可加速属性值的查找,必须和属性信息一起出现。 |
property |
否 |
String |
待删除边的属性名称,必须和value一起出现。 |
value |
否 |
String |
待删除边的属性值,必须和property一起出现。 |
请求示例
进行删除边操作,待删除边的起点名称为Vivian,终点名称为Lethal,边index值为0,边的label值为rate,属性名称为Score,属性值为5。
DELETE http://{SERVER_URL}/ges/v1.0/{project_id}/graphs/{graph_name}/edges?source=Vivian&target=Lethal Weapon&index=0&label=rate&property=Score&value=5
SERVER_URL:图的访问地址,取值请参考业务面API使用限制。
响应参数
参数 |
类型 |
说明 |
---|---|---|
errorMessage |
String |
系统提示信息。
|
errorCode |
String |
系统提示信息。
|
result |
String |
响应结果。成功时result值为success,失败时值为failed。 |
响应示例
状态码: 200
成功响应示例
Http Status Code: 200 { "result": "success" }
状态码: 400
失败响应示例
Http Status Code: 400 { "errorMessage": "edge source vertex [Lily] does not exist", "errorCode": "GES.8000" }
状态码
返回值 |
说明 |
---|---|
400 Bad Request |
请求错误。 |
401 Unauthorized |
鉴权失败。 |
403 Forbidden |
没有操作权限。 |
404 Not Found |
找不到资源。 |
500 Internal Server Error |
服务内部错误。 |
503 Service Unavailable |
服务不可用。 |
错误码
请参见错误码。