1
0
Fork 0
arangodb/Documentation/Examples/HttpGharialModifyVertex.gen...

21 lines
380 B
Plaintext

shell> curl -X PATCH --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF
{
"age" : 26
}
EOF
HTTP/1.1 202 Accepted
content-type: application/json
etag: 574878603
{
"error" : false,
"code" : 202,
"vertex" : {
"_id" : "female/alice",
"_rev" : "574878603",
"_oldRev" : "572715915",
"_key" : "alice"
}
}