mirror of https://gitee.com/bigwinds/arangodb
20 lines
443 B
Plaintext
20 lines
443 B
Plaintext
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/index?collection=products
|
|
{ "type": "skiplist", "unique" : false, "fields" : [ "a", "b" ] }
|
|
|
|
HTTP/1.1 201 Created
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"id" : "products/1318020566",
|
|
"type" : "skiplist",
|
|
"unique" : false,
|
|
"sparse" : false,
|
|
"fields" : [
|
|
"a",
|
|
"b"
|
|
],
|
|
"isNewlyCreated" : true,
|
|
"error" : false,
|
|
"code" : 201
|
|
}
|