OBJECT

ChangelogEntry

ChangelogEntry is an entry that displays new items and notifications in the creator homepage changelog.

link GraphQL Schema definition

1type ChangelogEntry {
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}