I use spring data mongodb.
I want the records between two dates. The following MongoDB Query works:
db.posts.find({startDate: {$gte: start, $lt: end}
I did like this
public interface PolicyRepository extends MongoRepository { @Query("{'lastDate':{$gt:?0,$lt:?1}}") public List findAllPolicies(Date today,Date somedate); }