OBJECT

CommunityPointsLastViewedContentByType

Holds the last time a content type was viewed.

link GraphQL Schema definition

1type CommunityPointsLastViewedContentByType {
2
3# The type of content that was viewed at the lastViewedAt time.
4contentType: CommunityPointsContentType!
5
6# The time at which the contentType was last viewed. Will be null if the content
7# hasn't been viewed.
8lastViewedAt: Time
9
10}