arangosh> db.test.ensureIndex({ type: "hash", fields: [ "a[*]" ] }); { "deduplicate" : true, "fields" : [ "a[*]" ], "id" : "test/16244", "isNewlyCreated" : true, "selectivityEstimate" : 1, "sparse" : false, "type" : "hash", "unique" : false, "code" : 201 } arangosh> db.test.save({ a : [ 1, 2 ] }); { "_id" : "test/16247", "_key" : "16247", "_rev" : "_XG3zIWy--_" } arangosh> db.test.save({ a : [ 1, 3 ] }); { "_id" : "test/16251", "_key" : "16251", "_rev" : "_XG3zIW2--_" } arangosh> db.test.save({ a : null }); { "_id" : "test/16254", "_key" : "16254", "_rev" : "_XG3zIW2--B" }