// unset all users' rank from db
await User.bulkWrite([{updateMany : { 
  filter: { rank: {$exists: true}},
  update: { $unset: { rank: 1 } }
  }
}])