OBJECT

ModViewNewsfeedEntry

ModViewNewsfeedEntry is an entry that displays content for the Mod View page's "What's New" feed.

link GraphQL Schema definition

1type ModViewNewsfeedEntry {
2
3# content is localized text content for the changelog entry.
4content: String!
5
6# iconURL is the url for the entry's icon image.
7iconURL: String
8
9# id is a unique human readable slug for the entry e.g. "squad-stream".
10id: ID!
11
12# linkText is the text that the linkURL should display.
13linkText: String
14
15# linkURL is an optional link for more content for this changelog entry.
16linkURL: String
17
18# position is where entry should be located within changelog entries of the same
19# date.
20position: Int!
21
22# publishedAt is the timestamp that the changelog entry was published.
23publishedAt: Time
24
25# title is the localized title of the changelog entry.
26title: String!
27
28}