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