I want to sort all json documents by descending order of their created date . For this , I've written :
NSMutableDictionary *otherMetaHeaders = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"orderByDescending",@"createdAt", nil];
StorageService *storageService = [App42API buildStorageService];
[storageService setOtherMetaHeaders:otherMetaHeaders];
[storageService findAllDocuments:<dbName> collectionName:<collectionName> completionBlock:^(BOOL success, id responseObj, App42Exception *exception)
{
...
..
...
}
But the docs are not getting in the required order . pls help