1
0
Fork 0
arangodb/Documentation/Examples/RestGraphChangepVertex.gene...

41 lines
780 B
Plaintext

shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/graph/graph/vertex/v1 <<EOF
{
"optional1" : "vertexPatch"
}
EOF
HTTP/1.1 202 Accepted
content-type: application/json; charset=utf-8
etag: 756347787
{
"vertex" : {
"_id" : "vertices/v1",
"_key" : "v1",
"_rev" : "756347787",
"optional1" : "vertexPatch"
},
"error" : false,
"code" : 202
}
shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/graph/graph/vertex/v1 <<EOF
{
"optional1" : null
}
EOF
HTTP/1.1 202 Accepted
content-type: application/json; charset=utf-8
etag: 756872075
{
"vertex" : {
"_id" : "vertices/v1",
"_key" : "v1",
"_rev" : "756872075",
"optional1" : null
},
"error" : false,
"code" : 202
}