OBJECT

CommunityPointsLastViewedContentByTypeAndID

Holds the last time a specific piece of content was viewed.

link GraphQL Schema definition

1type CommunityPointsLastViewedContentByTypeAndID {
2
3# A unique identifier for the piece of content based on the type of content
4# dictated by contentType.
5contentID: ID!
6
7# The type of content that was viewed at the lastViewedAt time.
8contentType: CommunityPointsContentType!
9
10# The time at which the content was last viewed. Will be null if the content
11# hasn't been viewed.
12lastViewedAt: Time
13
14}