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!]!
- # Human-readable explanation
- : String!
- # Educational value score (0-5) for the requested provider type, if applicable
- : Int
- # AI-generated reasoning for the educational value score
- : String
- # Feed boost multiplier applied to this post's author (from database or override)
- : Float
- }