मोंगो टेम्पलेट का उपयोग करना।
Criteria find = Criteria.where("company").is("Random");
Query query = new Query().addCriteria(find).with(new Sort(Sort.Direction.DESC, "reportDate"));
BasicDBObject result = mongoOperations.findOne(query, BasicDBObject.class, "collection_name");
मोंगो रिपोजिटरी का उपयोग करना
Report findTopByCompanyOrderByReportDateDesc(String company)