いくつかの複雑なクエリがあり、PFRelation で問題が発生している iOS アプリを Parse で構築しています。
これは、人々が記事を投稿するソーシャル ネットワーク Web サイトです。他のユーザーをフォローして、投稿された記事を見ることができます。トピックに基づいて検索することもできます。
これは私が持っているコードです
PFQuery* query = [PFQuery queryWithClassName:@"Article"];
//remove articles this user has seen or submitted
[query whereKey:@"likedBy" notEqualTo:currentUser]; //'likedBy' is a relation
[query whereKey:@"dislikedBy" notEqualTo:currentUser]; //'dislikedBy' is a relation
[query whereKey:@"submittedBy" notEqualTo:currentUser]; //'submittedBy' is a relation
[query whereKey:@"tagArray" containedIn:tags];
[query orderByDescending:@"createdAt"];
PFRelation* relation = [currentUser relationForKey:@"following"]; //following is a relation for the user
PFQuery* followingQuery = [relation query];
[followingQuery findObjectsInBackgroundWithBlock:^(NSArray* results, NSError* error) {
//results from this first query is the list of people the user is following
[query whereKey:@"submittedBy" containedIn:results]; //submitted by is a relation on the article
[query findObjectsInBackgroundWithBlock:^(NSArray* results, NSError* error) {
/* This will return all the items that match the tags set above.
However, if there are no tags, I do not get the articles
that match the "submittedBy" above. It is empty */
completion(results);
}];
}];
}
これを読んでいただきありがとうございます。