OBJECT

PostFeedReason

Explains why a specific post appeared in the feed

link GraphQL Schema definition

  • type PostFeedReason {
  • # The post ID this reason applies to
  • postId: ID!
  • # Primary source that caused this post to appear
  • source: FeedSource!
  • # Topics that matched (if source involves topics)
  • matchedTopics: [Topic!]!
  • # Weight/priority score used for ranking
  • weight: Float!
  • # Human-readable explanation
  • explanation: String!
  • }