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