OBJECT

EmbeddedEmote

EmbeddedEmote is an encoding format used to describe an emote embedded in a string of text.

Example: body = "hey KappaHD" from = 4 to = 10

"KappaHD" will be replaced with the KappaHD emote image.

link GraphQL Schema definition

1type EmbeddedEmote {
2
3# The emote's identifier, for example "115847" -> KappaHD.
4emoteID: ID
5
6# from is the index of the string where replacement starts.
7from: Int
8
9id: ID
10
11# setID is the identifier of the set this emote is in.
12setID: ID
13
14# to is the index of the string where replacement ends.
15to: Int
16
17}