Database

[{"_id":ObjectId("5e7cad5eea67369a03a58418"),"address":"abcd","users":[{"id":100,"timestamp":1000},{"id":200,"timestamp":2000}]},{"_id":ObjectId("5e7cad5eea67369a03a58419"),"address":"defg","users":[{"id":100,"timestamp":1000},{"id":200,"timestamp":2000}]}]

Query

db.collection.aggregate([{$match:{"address":"abcd"}},{$addFields:{users:{$filter:{input:"$users",cond:{$and:[{$gte:["$$this.timestamp",12]},{$lte:["$$this.timestamp",1500]}]}}}}}])

Result