First things first you cannot have a range inside your string datatype. You have to split your Employees’ field into two separate fields(employees_from and employees_to). For performing the above implementation, you can use Mongo’s MapReduce for splitting the field into two separate fields. Then you can read your data with the help of the following code:
db.employee.find({employees_from : {$gte : 200}})
If you want to learn more about MongoDB then go through this MongoDB course for more insights.
In addition, check out this Full Stack Developer Online Course to help you enhance your skills.