arangosh> db.test.ensureIndex({ type: "hash", fields: [ "a" ] }); { "deduplicate" : true, "fields" : [ "a" ], "id" : "test/108515", "isNewlyCreated" : true, "selectivityEstimate" : 1, "sparse" : false, "type" : "hash", "unique" : false, "code" : 201 } arangosh> db.test.save({ a : 1 }); { "_id" : "test/108518", "_key" : "108518", "_rev" : "_XPb92Y---_" } arangosh> db.test.save({ a : 1 }); { "_id" : "test/108522", "_key" : "108522", "_rev" : "_XPb92Y---B" } arangosh> db.test.save({ a : null }); { "_id" : "test/108525", "_key" : "108525", "_rev" : "_XPb92Y---D" }