1
0
Fork 0
arangodb/Documentation/Examples/shell_index-read-all

26 lines
424 B
Plaintext

arango> db.demo.getIndexes()
[
{ "id" : "demo/0",
"type" : "primary",
"fields" : ["_id"]
},
{
"id" : "demo/2290971",
"unique" : true,
"type" : "hash",
"fields" : ["a"]
},
{
"id" : "demo/2946331",
"unique" : false,
"type" : "hash",
"fields" : ["b"]
},
{
"id" : "demo/3077403",
"unique" : false,
"type" : "skiplist",
"fields" : ["c"]
}
]