OBJECT

FeedMetadata

Metadata explaining the composition and reasoning for the feed

link GraphQL Schema definition

  • type FeedMetadata {
  • # Number of posts from followed topics only
  • totalTopicPosts: Int!
  • # Number of posts from followed users only
  • totalFollowingPosts: Int!
  • # Number of posts matching both followed users AND topics
  • totalBothPosts: Int!
  • # The weighting configuration applied to this feed
  • appliedConfig: FeedWeightConfig!
  • # Breakdown of how many posts came from each topic
  • topicBreakdown: [TopicContribution!]!
  • # Individual reasons for each post in the feed (keyed by post ID)
  • postReasons: [PostFeedReason!]!
  • }