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