Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
62baf2a
chore: update release workflow and .gitignore entries
imbajin Nov 14, 2025
5bb8ee0
refactor: unify release validation script and add local path support
imbajin Nov 14, 2025
e4e9e08
refactor: revamp release validation script with enhanced checks V2
imbajin Nov 14, 2025
1ab58f1
refactor: enhance release validation for multi-arch and license check…
imbajin Nov 14, 2025
ba74766
refactor: improve validation script error context and reporting V4
imbajin Nov 14, 2025
af87f8a
fix: add JSON to CATEGORY_X license validation
imbajin Nov 14, 2025
512b51c
introduce new version of validation
Pengzna Nov 15, 2025
c4107b6
Update GPG username and regex in workflow
imbajin Nov 26, 2025
c773933
feat: add 1.7.0 release-notes (#429)
Pengzna Nov 16, 2025
dff6ba1
chore: add docker using / add load data methods (#423)
Ethereal-O Nov 17, 2025
ea90243
chore: minor test (#430)
Ethereal-O Nov 19, 2025
e4660a6
docs: delete licsence/add link of twitter (#431)
Ethereal-O Nov 19, 2025
34bfab5
chore: add deepwiki notes in docs (#432)
Ethereal-O Nov 20, 2025
552d1ec
feat: add graphspace
Pengzna Nov 4, 2025
058186c
add graphspace
Pengzna Nov 4, 2025
0de6200
fix: graph space path
Tsukilc Nov 16, 2025
a47b1cb
fix: auth path
Tsukilc Nov 16, 2025
4419925
fix: graphspaceapi
Tsukilc Nov 17, 2025
6927d75
fix: translate en
Tsukilc Nov 17, 2025
91e3cbc
fix: fix docs
Tsukilc Nov 18, 2025
94366cd
fix: fix docs
Tsukilc Nov 18, 2025
e310cc1
fix: fix docs
Tsukilc Nov 24, 2025
cfb422e
fix: fix docs
Tsukilc Nov 24, 2025
3619a9a
fix: fix docs
Tsukilc Nov 24, 2025
585b7ae
fix: fix docs
Tsukilc Nov 25, 2025
339fa53
fix: fix docs
Tsukilc Nov 25, 2025
39bcd03
fix: fix docs
Tsukilc Nov 26, 2025
88f2469
fix: fix docs
Tsukilc Nov 26, 2025
50d4468
fix: fix docs
Tsukilc Nov 26, 2025
0ccf452
Merge branch 'master' into pr/425
imbajin Nov 26, 2025
80967e0
Delete .github/workflows/validate-release-new.yml
imbajin Nov 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions content/cn/docs/clients/restful-api/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ linkTitle: "RESTful API"
weight: 1
---

HugeGraph-Server通过HugeGraph-API基于HTTP协议为Client提供操作图的接口,主要包括元数据和
图数据的增删改查,遍历算法,变量,图操作及其他操作。
> ⚠️ **版本兼容性说明**
>
> - HugeGraph 1.7.0+ 引入了图空间功能,API 路径格式为:`/graphspaces/{graphspace}/graphs/{graph}`
> - HugeGraph 1.5.x 及之前版本使用旧路径:`/graphs/{graph}`, 以及创建/克隆图的 api 使用 text/plain 作为 Content-Type, 1.7.0 及之后使用 json
> - 默认图空间名称为 `DEFAULT`,可直接使用
> - 旧版本 doc 参考:[HugeGraph 1.5.x RESTful API](https://github.com/apache/incubator-hugegraph-doc/tree/release-1.5.0)

除了下方的文档,你还可以通过 `localhost:8080/swagger-ui/index.html` 访问 `swagger-ui` 以查看 `RESTful API`。[示例可以参考此处](/cn/docs/quickstart/hugegraph/hugegraph-server#swaggerui-example)

Expand Down
Loading