OBJECT

CommunityPointsEmoteVariant

A community points emote variant, includes base emote plus modifications.

link GraphQL Schema definition

1type CommunityPointsEmoteVariant {
2
3# The base emote for this variant.
4emote: CommunityPointsEmote!
5
6# The emote variant's identifier.
7id: ID!
8
9# Whether community points can be used to unlock the base emote.
10isUnlockable: Boolean!
11
12# The modifications available to be unlocked for this emote.
13modifications: [CommunityPointsEmoteModification!]!
14
15}