OBJECT
FeedMetadata
Metadata explaining the composition and reasoning for the feed
link GraphQL Schema definition
- type FeedMetadata {
- # Number of posts from followed topics only
- : Int!
- # Number of posts from followed users only
- : Int!
- # Number of posts matching both followed users AND topics
- : Int!
- # The weighting configuration applied to this feed
- : FeedWeightConfig!
- # Breakdown of how many posts came from each topic
- : [TopicContribution!]!
- # Individual reasons for each post in the feed (keyed by post ID)
- : [PostFeedReason!]!
- }