“Can mongodb retrieve documents with endDate greater than a certain date?”
I am attempting to query my database using Go's mongodb driver to retrieve all documents where the endDate is greater than a date passed in as type time.Time. I am getting 0 documents returned with my query. Here are a…