OBJECT
PostFeedReason
Explains why a specific post appeared in the feed
link GraphQL Schema definition
- type PostFeedReason {
- # The post ID this reason applies to
- : ID!
- # Primary source that caused this post to appear
- : FeedSource!
- # Topics that matched (if source involves topics)
- : [Topic!]!
- # Weight/priority score used for ranking
- : Float!
- # Human-readable explanation
- : String!
- }