mirror of https://gitee.com/bigwinds/arangodb
39 lines
918 B
Plaintext
39 lines
918 B
Plaintext
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF
|
|
{"name":"testCollectionBasics"}
|
|
EOF
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: application/json; charset=utf-8
|
|
location: /_db/_system/_api/collection/testCollectionBasics
|
|
|
|
{
|
|
"id" : "618722187",
|
|
"name" : "testCollectionBasics",
|
|
"waitForSync" : false,
|
|
"isVolatile" : false,
|
|
"isSystem" : false,
|
|
"status" : 3,
|
|
"type" : 2,
|
|
"error" : false,
|
|
"code" : 200
|
|
}
|
|
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF
|
|
{"name":"testCollectionEdges","type":3}
|
|
EOF
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: application/json; charset=utf-8
|
|
location: /_db/_system/_api/collection/testCollectionEdges
|
|
|
|
{
|
|
"id" : "618853259",
|
|
"name" : "testCollectionEdges",
|
|
"waitForSync" : false,
|
|
"isVolatile" : false,
|
|
"isSystem" : false,
|
|
"status" : 3,
|
|
"type" : 3,
|
|
"error" : false,
|
|
"code" : 200
|
|
}
|