I am using objmongodb as a tool to communicate with my work's mongodb.
i need to create a query for all docs with a field pickup.recommended equaling todays date.
I'v tried using:
[predicate keyPath:@"pickup.recommended" matches:[NSDate date]];
as well as
[predicate keyPath:@"pickup.recommended" matches:@"2014-02-20"];
But all queries return zero results with that added predicate to a MongoFindRequest. And the query was working before i added that statement.