await Student.updateMany(
          { parent: new ObjectId(id) },
          [{ $set: { 
            isDeleted: true,
            username_lower: { $concat: [ `text to append`, "$username_lower" ] } 
          } }],
        )