Mongodb – CastError: Cast to Number failed for value "{ '$lte': '100' }" (type Object) at path "profile.age" for model "User"
So I have a mongo schema, which looks something like this: const UserSchema = new mongoose.Schema({ profile: { // ...other stuff age: { type: Number, min: [18, "Min age is 18"], max: [99, "Max age is 99"], }, And Im…