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