mirror of https://gitee.com/bigwinds/arangodb
72 lines
1.4 KiB
Plaintext
72 lines
1.4 KiB
Plaintext
shell> curl --dump - http://localhost:8529/_api/index?collection=products
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"indexes" : [
|
|
{
|
|
"id" : "products/0",
|
|
"type" : "primary",
|
|
"fields" : [
|
|
"_key"
|
|
],
|
|
"selectivityEstimate" : 1,
|
|
"unique" : true,
|
|
"sparse" : false
|
|
},
|
|
{
|
|
"id" : "products/822080395",
|
|
"type" : "hash",
|
|
"fields" : [
|
|
"name"
|
|
],
|
|
"selectivityEstimate" : 1,
|
|
"unique" : false,
|
|
"sparse" : false
|
|
},
|
|
{
|
|
"id" : "products/822342539",
|
|
"type" : "skiplist",
|
|
"fields" : [
|
|
"price"
|
|
],
|
|
"unique" : false,
|
|
"sparse" : true
|
|
}
|
|
],
|
|
"identifiers" : {
|
|
"products/0" : {
|
|
"id" : "products/0",
|
|
"type" : "primary",
|
|
"fields" : [
|
|
"_key"
|
|
],
|
|
"selectivityEstimate" : 1,
|
|
"unique" : true,
|
|
"sparse" : false
|
|
},
|
|
"products/822080395" : {
|
|
"id" : "products/822080395",
|
|
"type" : "hash",
|
|
"fields" : [
|
|
"name"
|
|
],
|
|
"selectivityEstimate" : 1,
|
|
"unique" : false,
|
|
"sparse" : false
|
|
},
|
|
"products/822342539" : {
|
|
"id" : "products/822342539",
|
|
"type" : "skiplist",
|
|
"fields" : [
|
|
"price"
|
|
],
|
|
"unique" : false,
|
|
"sparse" : true
|
|
}
|
|
},
|
|
"error" : false,
|
|
"code" : 200
|
|
}
|