mirror of https://gitee.com/bigwinds/arangodb
21 lines
408 B
Plaintext
21 lines
408 B
Plaintext
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/aliceAndBob <<EOF
|
|
{
|
|
"type" : "divorced"
|
|
}
|
|
EOF
|
|
|
|
HTTP/1.1 202 Accepted
|
|
content-type: application/json
|
|
etag: 2162185628
|
|
|
|
{
|
|
"error" : false,
|
|
"code" : 202,
|
|
"edge" : {
|
|
"_id" : "relation/aliceAndBob",
|
|
"_rev" : "2162185628",
|
|
"_oldRev" : "2161202588",
|
|
"_key" : "aliceAndBob"
|
|
}
|
|
}
|