Guides

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

FeedHighlightsRequest

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

๐Ÿ“˜

Feed Highlights: GraphQL API Full Example