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