With the previous version of the SDK, I was able to get all the objects that had a LastModifiedTime after 8/1, but with the new SDK, i am getting the following error:
> KCSQuery2:285 [ERROR (DATA)] Support for query "{
> "_kmd.lmt" = {
> "$gt" = "2014-04-11 18:22:09 +0000";
> };
> }" not supported yet. Contact support@kinvey.com to get this supported.
Please let me know what the correct way is with the new version of the SDK.
Arun Venkatesan
NSString *lastUpdated = @"2013-08-01T11:22:57.075Z";
KCSQuery* modifiedDateQuery = [KCSQuery queryOnField:KCSMetadataFieldLastModifiedTime usingConditionalsForValues:kKCSGreaterThan, lastUpdated, nil];
[store queryWithQuery:modifiedDateQuery withCompletionBlock:^(NSArray *objectsOrNil, NSError *errorOrNil) { ... }
With the previous version of the SDK, I was able to get all the objects that had a LastModifiedTime after 8/1, but with the new SDK, i am getting the following error:
> KCSQuery2:285 [ERROR (DATA)] Support for query "{
> "_kmd.lmt" = {
> "$gt" = "2014-04-11 18:22:09 +0000";
> };
> }" not supported yet. Contact support@kinvey.com to get this supported.
Please let me know what the correct way is with the new version of the SDK.