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