OBJECT

CommunityPointsEmoteModification

A community points emote modification.

link GraphQL Schema definition

1type CommunityPointsEmoteModification {
2
3# The modified emote.
4emote: CommunityPointsEmote!
5
6# Time that the modification was last updated globally in a way that should show a
7# new content indicator to viewers.
8globallyUpdatedForIndicatorAt: Time!
9
10# The emote modification's identifier.
11id: ID!
12
13# The modifier of the emote.
14modifier: CommunityPointsEmoteModifier!
15
16# The dark version of the icon to represent the modification made to the emote.
17modifierIconDark: CommunityPointsImage! @deprecated( reason: "Use field in modifier." )
18
19# The light version of the icon to represent the modification made to the emote.
20modifierIconLight: CommunityPointsImage! @deprecated( reason: "Use field in modifier." )
21
22# The title for the modification.
23title: String! @deprecated( reason: "Use field in modifier." )
24
25}