arangosh> v = db._view("example"); [ArangoView 132693, "example" (type arangosearch)] arangosh> v.properties(); ........> // set cleanupIntervalStep to 12 { "links" : { }, "cleanupIntervalStep" : 10, "consolidationPolicy" : { "type" : "bytes_accum", "threshold" : 0.10000000149011612 }, "consolidationIntervalMsec" : 60000 } arangosh> v.properties({cleanupIntervalStep: 12}); ........> // add a link { "cleanupIntervalStep" : 12, "consolidationIntervalMsec" : 60000, "consolidationPolicy" : { "type" : "bytes_accum", "threshold" : 0.10000000149011612 }, "links" : { } } arangosh> v.properties({links: {demo: {}}}) ........> // remove a link { "cleanupIntervalStep" : 12, "consolidationIntervalMsec" : 60000, "consolidationPolicy" : { "type" : "bytes_accum", "threshold" : 0.10000000149011612 }, "links" : { "demo" : { "analyzers" : [ "identity" ], "fields" : { }, "includeAllFields" : false, "trackListPositions" : false, "storeValues" : "none", "id" : "132704", "type" : "arangosearch", "view" : "hFF57C08BA671/132693" } } } arangosh> v.properties({links: {demo: null}}) { "cleanupIntervalStep" : 12, "consolidationIntervalMsec" : 60000, "consolidationPolicy" : { "type" : "bytes_accum", "threshold" : 0.10000000149011612 }, "links" : { } }