Please help, I need to filter between dates using java mongodb driver below is is my Filtering operation however, its failed to select between the date
FindIterable<Document> documents = collection
.find(Filters.and("started", gte("2019-01-01T00:00:00.000Z"), lt("2019-03-01T00:00:00.000Z")))
Therefore, I want to be about to filter for Date range.