mirror of https://gitee.com/bigwinds/arangodb
39 lines
764 B
Plaintext
39 lines
764 B
Plaintext
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/graph/graph/vertex/v1
|
|
{
|
|
"optional1" : "vertexPatch"
|
|
}
|
|
|
|
HTTP/1.1 202 Accepted
|
|
content-type: application/json; charset=utf-8
|
|
etag: 1192421723
|
|
|
|
{
|
|
"vertex" : {
|
|
"_id" : "vertices/v1",
|
|
"_key" : "v1",
|
|
"_rev" : "1192421723",
|
|
"optional1" : "vertexPatch"
|
|
},
|
|
"error" : false,
|
|
"code" : 202
|
|
}
|
|
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/graph/graph/vertex/v1
|
|
{
|
|
"optional1" : null
|
|
}
|
|
|
|
HTTP/1.1 202 Accepted
|
|
content-type: application/json; charset=utf-8
|
|
etag: 1192946011
|
|
|
|
{
|
|
"vertex" : {
|
|
"_id" : "vertices/v1",
|
|
"_key" : "v1",
|
|
"_rev" : "1192946011",
|
|
"optional1" : null
|
|
},
|
|
"error" : false,
|
|
"code" : 202
|
|
}
|