Please correct me If I’m wrong, I’m trying to show the global feed following
const liveFeed = PostRepository.queryAllPosts();
liveFeed.once('dataUpdated', posts => {
console.log(posts.map(post => post.postId))
});
From the result, I could get the data If I use an account which is joined some communities.
But for an account without joining any community, I cannot retrieve any post from it.
Please help confirm If the Global feed is not available for non-member?