Feed highlights
This Request is Protected by Authentication
Fetch a distilled collection of posts and quotes from the user's feed that have the most engagement.
Request
Invocation
const result = await client.feed.highlights({
where: {
for: "PROFILE_ID",
},
});
query FeedHighlights($request: FeedHighlightsRequest!) {
result: feedHighlights(request: $request) {
items {
... on Post {
...Post
}
... on Quote {
...Quote
}
}
pageInfo {
...PaginatedResultInfo
}
}
}
Response
Paginated result with Post or Quote
Full GraphQL API Example
Updated about 1 month ago