AND operator in compound queries with GeoPoint Parse.com iOS

362 Views Asked by At

I try to run a compound query that returns objects near a GeoPint. I only want to retrieve objects that are junger than 24h. Somehow my code returns 0. objects.. I only found that OrQueries are not possible with GeoPoints. I would expect AND Queries to work. Thanks for any hints or advices how to solve that issue.

NSDate *now = [NSDate date];
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components = [calendar components:NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit fromDate:now];
[components setHour:-(24)];

NSDate *queryDate = [calendar dateFromComponents:components];

PFGeoPoint *point = [PFGeoPoint geoPointWithLatitude:self.currentLocation.coordinate.latitude longitude:self.currentLocation.coordinate.longitude];

PFQuery *query = [PFQuery queryWithClassName:@"GeoTag"];
[query whereKey:@"createdAt" greaterThanOrEqualTo:queryDate];
[query whereKey:@"location" nearGeoPoint:point];

// Limit what could be a lot of points.
query.limit = 10;

// Final list of objects
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
    if (!error) {
        // The find succeeded.
        NSLog(@"Successfully retrieved %ld objects.", objects.count);
        // Do something with the found objects
        for (PFObject *object in objects) {
            NSLog(@"%@", object.objectId);
        }
    } else {
        // Log details of the failure
        NSLog(@"Error: %@ %@", error, [error userInfo]);
    }
}];
1

There are 1 best solutions below

11
On

Ah, ok, you're using the wrong method to create the date.

You should do something like this...

NSDateComponents *components = [NSDateComponents new];
[components setHour:-24];

NSDate *queryDate = [[NSCalendar currentCalendar] dateByAddingComponents:components toDate:[NSDate date] options:0];

Then run your query.