Firestore规则如下:
// Make sure a user has a permission to access story.
allow read: if exists(~/stories/$(request.storyId)/viewers/$(request.auth.uid))
我想获得所有我可以阅读的故事。这是我的查询。
[self.db collectionWithPath:@"stories"].get();
此查询将失败,因为它与规则不匹配。
我的问题是如何查询?