HaiLin Huang 1 month ago
parent
commit
1c178743e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      graph/main.go

+ 1 - 1
graph/main.go

@@ -87,7 +87,7 @@ func GetNodeRelationShips(id, relationName, importId string, inverse bool) (*sdk
 		isInverse = 1
 	}
 	resp, err := getReq[*sdk.BaseResponse[[]map[string]any]]("/graphService/open/node/relationships", gout.H{
-		"id":       id,
+		"ids":      id,
 		"rName":    relationName,
 		"importId": importId,
 		"inverse":  isInverse,