Get Feed Type

A post created in a community with the post review enabled will initially be placed in FeedType.Reviewing feed. Once approved, it will be moved to FeedType.Published. If it was declined, it will be moved to FeedType.Declined.

To know which community feed the post belongs to:

const isPublished = post.feedType === FeedType.Published;
const isUnderReview = post.feedType === FeedType.Reviewing;
const isDeclined = post.feedType === FeedType.Declined;

Community Feed Query

To get the posts from the feed:

Note: Users without moderation permissions will receive only posts they created for FeedType.Reviewing and FeedType.Declined feeds.

Last updated