4.1 Variables

Variables可以用来存储有关整个图的数据,数据按照键值对的方式存取

4.1.1 创建或者更新某个键值对

Method & Url
  1. PUT http://localhost:8080/graphs/hugegraph/variables/name
Request Body
  1. {
  2. "data": "tom"
  3. }
Response Status
  1. 200
Response Body
  1. {
  2. "name": "tom"
  3. }

4.1.2 列出全部键值对

Method & Url
  1. GET http://localhost:8080/graphs/hugegraph/variables
Response Status
  1. 200
Response Body
  1. {
  2. "name": "tom"
  3. }

4.1.3 列出某个键值对

Method & Url
  1. GET http://localhost:8080/graphs/hugegraph/variables/name
Response Status
  1. 200
Response Body
  1. {
  2. "name": "tom"
  3. }

4.1.4 删除某个键值对

Method & Url
  1. DELETE http://localhost:8080/graphs/hugegraph/variables/name
Response Status
  1. 204