Account statement of a user

How can i get the details(e.g transaction history) of a particular user with time range inside mongodb database, I was able to get the time range transfer history for all my user like this :
const statement = await user.find({$and:[{"Date":{$gte:1676590789236}},{"Date":{$lte:1676590908291}}]})
but not for single user history, I will be more than grateful if anybody can help , Thanks

With so little information about your schema, the only thing we can say is that simply add the clause to your $and that uniquely identify your user.