admin.legacyAssignmentPolicy() as element(db.assignmentPolicy)
This function returns an element that represents the legacy
assignment policy. Use the
admin.databaseSetAssignmentPolicy
function to set the assignment policy.
const admin = require('/MarkLogic/admin'); const config = admin.getConfiguration(); const dbId = admin.databaseGetId(config, 'db1'); const policy = admin.legacyAssignmentPolicy(); admin.databaseSetAssignmentPolicy(config, dbId, policy); // Returns the new configuration element -- use admin.saveConfiguration // to save the changes to the configuration or pass the configuration // to other Admin API functions to make other changes.